Skip to content

Instantly share code, notes, and snippets.

@gregori
Created October 25, 2015 21:26
Show Gist options
  • Save gregori/daf26f8b553df56a137d to your computer and use it in GitHub Desktop.
Save gregori/daf26f8b553df56a137d to your computer and use it in GitHub Desktop.
Passo 3a
@Configuration
@EnableGlobalMethodSecurity(prePostEnabled = true)
@EnableWebSecurity
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
@Autowired
private FakeUserDetailsService userDetailsService;
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.userDetailsService(userDetailsService);
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().anyRequest().fullyAuthenticated();
http.httpBasic();
http.csrf().disable();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment