Merge branch '5.8.x' into 6.0.x

This commit is contained in:
Josh Cummings 2023-03-20 15:24:19 -06:00
commit b22dd9a3e9
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5

View File

@ -210,7 +210,7 @@ You could then refer to the method as follows:
----
http
.authorizeHttpRequests(authorize -> authorize
.requestMatchers("/user/{userId}/**").access("@webSecurity.checkUserId(authentication,#userId)")
.requestMatchers("/user/{userId}/**").access(new WebExpressionAuthorizationManager("@webSecurity.checkUserId(authentication,#userId)"))
...
);
----