Merge branch '6.0.x'
This commit is contained in:
commit
2b6a2c22db
|
@ -210,7 +210,7 @@ You could then refer to the method as follows:
|
||||||
----
|
----
|
||||||
http
|
http
|
||||||
.authorizeHttpRequests(authorize -> authorize
|
.authorizeHttpRequests(authorize -> authorize
|
||||||
.requestMatchers("/user/{userId}/**").access("@webSecurity.checkUserId(authentication,#userId)")
|
.requestMatchers("/user/{userId}/**").access(new WebExpressionAuthorizationManager("@webSecurity.checkUserId(authentication,#userId)"))
|
||||||
...
|
...
|
||||||
);
|
);
|
||||||
----
|
----
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
Spring Boot 2.x brings full auto-configuration capabilities for OAuth 2.0 Login.
|
Spring Boot 2.x brings full auto-configuration capabilities for OAuth 2.0 Login.
|
||||||
|
|
||||||
This section shows how to configure the {gh-samples-url}/boot/oauth2login[*OAuth 2.0 Login sample*] by using _Google_ as the _Authentication Provider_ and covers the following topics:
|
This section shows how to configure the {gh-samples-url}/servlet/spring-boot/java/oauth2/login[*OAuth 2.0 Login sample*] by using _Google_ as the _Authentication Provider_ and covers the following topics:
|
||||||
|
|
||||||
* <<oauth2login-sample-initial-setup>>
|
* <<oauth2login-sample-initial-setup>>
|
||||||
* <<oauth2login-sample-redirect-uri>>
|
* <<oauth2login-sample-redirect-uri>>
|
||||||
|
|
Loading…
Reference in New Issue