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
The shouldFilterAllDispatcherTypes property was added to configure the AuthorizationFilter to apply to every dispatcher type.
In Spring Security 5, the default value is false and in Spring Security 6 it is true.
It is not recommended to set this property to false just to not apply to all the dispatcher types, instead, the dispatcher types should be permitted using the security DSL.
The
shouldFilterAllDispatcherTypes
property was added to configure theAuthorizationFilter
to apply to every dispatcher type.In Spring Security 5, the default value is
false
and in Spring Security 6 it istrue
.It is not recommended to set this property to
false
just to not apply to all the dispatcher types, instead, the dispatcher types should be permitted using the security DSL.Instead of:
do:
The text was updated successfully, but these errors were encountered: