Created
May 1, 2021 18:20
-
-
Save boudhayan-dev/7688ec578940f5115149f6c9cb762a49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected void configure(HttpSecurity http) throws Exception { | |
this.logger.debug("Using default configure(HttpSecurity). " | |
+ "If subclassed this will potentially override subclass configure(HttpSecurity)."); | |
http.authorizeRequests((requests) -> requests.anyRequest().authenticated()); | |
http.formLogin(); | |
http.httpBasic(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment