How to provide custom security configuration for oauth2 with spring-boot 1.3.0.RC1
With spring-cloud Angel.SR3 release I followed example in https://github.com/spring-cloud-samples/sso and things work fine with spring-boot 1.2.6.RELEASE. However with spring-boot 1.3.0.RC1, the oauth2 stuff has moved into spring-boot itself, and the code below fails to compile because class OAuth2SsoConfigurerAdapter no longer exists. What is the spring-boot only way to create equivalent configuration? public static void main(String[] args) { SpringApplication.run(MainAppApplication.class, args); } ... @Component public static class LoginConfigurer extends OAuth2SsoConfigurerAdapter {