* Expression-Based Access Control PermitAll, hasRole, hasAnyRole etc. I modified classes regards to Security * Added test cases for Spring Security Expressions * Handler Interceptor - logging example * Test for logger interceptor * Removed conflicted part * UserInterceptor (adding user information to model) * Spring Handler Interceptor - session timers * Spring Security CSRF attack protection with Thymeleaf * Fix and(); * Logger update * Changed config for Thymeleaf * Thymeleaf Natural Processing and Inlining
8 lines
132 B
Java
8 lines
132 B
Java
package com.baeldung.thymeleaf.utils;
|
|
|
|
public class ArrayUtil {
|
|
|
|
public static String[] array(String... args) {
|
|
return args;
|
|
}
|
|
} |