public final class GrailsFilterOrder extends java.lang.Object
Constants for filter ordering in Grails applications.
These constants were previously obtained from Spring Boot's SecurityProperties
class, but were removed in Spring Boot 4.0. They are now defined here for use by
Grails filter configuration.
| Modifiers | Name | Description |
|---|---|---|
static int |
DEFAULT_FILTER_ORDER |
Default order of Spring Security's Filter in the servlet container (i.e. amongst other filters registered with the container). |
| Methods inherited from class | Name |
|---|---|
class java.lang.Object |
java.lang.Object#equals(java.lang.Object), java.lang.Object#getClass(), java.lang.Object#hashCode(), java.lang.Object#notify(), java.lang.Object#notifyAll(), java.lang.Object#toString(), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#wait(long, int) |
Default order of Spring Security's Filter in the servlet container (i.e. amongst
other filters registered with the container). There is no connection between this
and the @Order on a SecurityFilterChain.
The value -100 matches what was previously defined in Spring Boot's
SecurityProperties.DEFAULT_FILTER_ORDER (computed as
OrderedFilter.REQUEST_WRAPPER_FILTER_MAX_ORDER - 100) before it was
removed in Spring Boot 4.0.