You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, to apply the FilterChainProxy to all dispatcher types using Spring Boot, one can do: spring.security.filter.dispatcher-types=request,async,error,forward,include, where the default are just request,async,error.
Spring Boot should register the FilterChainProxy to all dispatcher types by default to better align with Spring Security defaults.
The text was updated successfully, but these errors were encountered:
wilkinsona
changed the title
Register FilterChainProxy for all dispatcher types
Default security filter dispatcher types are not aligned with Spring Security's defaults
Nov 9, 2022
spring-projects/spring-security#11027 has changed the Spring Security default by applying authorization to every request.
Currently, to apply the
FilterChainProxy
to all dispatcher types using Spring Boot, one can do:spring.security.filter.dispatcher-types=request,async,error,forward,include
, where the default are justrequest,async,error
.Spring Boot should register the
FilterChainProxy
to all dispatcher types by default to better align with Spring Security defaults.The text was updated successfully, but these errors were encountered: