Spring Security: Configure debug mode programmatically
Introduction
If you have used Spring Security before, you will likely enable the debug mode at some point
@Configuration
@EnableWebSecurity(debug = true)
public class WebSecurityConfiguration {
// omit
}
Start the application and you will see th...
bwgjoseph.com2 min read