Skip to content

Instantly share code, notes, and snippets.

Created March 25, 2015 08:58
Show Gist options
  • Save anonymous/9bbf2991ffdca7f002c9 to your computer and use it in GitHub Desktop.
Save anonymous/9bbf2991ffdca7f002c9 to your computer and use it in GitHub Desktop.
@Configuration
@EnableWebMvcSecurity
public class ApplicationSecurity extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.anyRequest().permitAll();
}
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth
.inMemoryAuthentication()
.withUser("user").password("password").roles("USER");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment