Files
spring-boot-rest/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/ArrayUtil.java
maibin 72b2eacb4f Thymeleaf inlining and natural processing (#711)
* 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
2016-10-01 10:59:54 +02:00

8 lines
132 B
Java

package com.baeldung.thymeleaf.utils;
public class ArrayUtil {
public static String[] array(String... args) {
return args;
}
}