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
MethodAuthorizationDeniedHandler is an interface with a single non-default method, therefore it can be implemented by a lambda. However, HandleAuthorizationDenied can only reference a handler by class, excluding lambdas.
I would like HandleAuthorizationDenied to have an additional parameter String handler() default "" so that this is possible:
MethodAuthorizationDeniedHandler
is an interface with a single non-default method, therefore it can be implemented by a lambda. However,HandleAuthorizationDenied
can only reference a handler by class, excluding lambdas.I would like
HandleAuthorizationDenied
to have an additional parameterString handler() default ""
so that this is possible:Even better if the handler name could be interpolated from a property or a spel expression.
The text was updated successfully, but these errors were encountered: