Skip to content

Instantly share code, notes, and snippets.

@artem-smotrakov
Last active October 10, 2018 14:00
Show Gist options
  • Save artem-smotrakov/b8c601db7cc389e3b147e3aa89c0d775 to your computer and use it in GitHub Desktop.
Save artem-smotrakov/b8c601db7cc389e3b147e3aa89c0d775 to your computer and use it in GitHub Desktop.
Disabling HTTP Basic authentication in Spring framework, see more in https://blog.gypsyengineer.com/en/security/tips-configuring-security-rest-api-spring.html
@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.httpBasic().disable();
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment