File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-social/src/main/java/com/example/springsocial/config Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
3838 private CustomOAuth2UserService customOAuth2UserService ;
3939
4040 @ Autowired
41- private OAuth2AuthenticationSuccessHandler oauth2AuthenticationSuccessHandler ;
41+ private OAuth2AuthenticationSuccessHandler oAuth2AuthenticationSuccessHandler ;
4242
4343 @ Autowired
4444 private OAuth2AuthenticationFailureHandler oAuth2AuthenticationFailureHandler ;
@@ -112,7 +112,7 @@ protected void configure(HttpSecurity http) throws Exception {
112112 .userInfoEndpoint ()
113113 .userService (customOAuth2UserService )
114114 .and ()
115- .successHandler (oauth2AuthenticationSuccessHandler )
115+ .successHandler (oAuth2AuthenticationSuccessHandler )
116116 .failureHandler (oAuth2AuthenticationFailureHandler );
117117
118118 // Add our custom Token based authentication filter
You can’t perform that action at this time.
0 commit comments