61626364656667
).permitAll() //The rest of the our application is protected. .antMatchers("/**").hasRole("USER") //Adds the SocialAuthenticationFilter to Spring Security's filter chain. .and() .apply(new SpringSocialConfigurer()); }
83848586878889
.antMatchers("/**").authenticated() .and() .rememberMe() .and() .apply( new SpringSocialConfigurer()); }