配置 Spring Security
WebSecurityConfigurerAdapter中的configure(HttpSecurity)
protected void configure(HttpSecurity http) throws Exception {
logger.debug("Using default configure(HttpSecurity). If subclass");
http
.authorizeRequests()
.anyRequest().authenticated() // 任何请求都会进行认证
.and()
.formLogin() // 启动内建的登录界面
.and()
.httpBasic(); // 使用 HTTP Basic Auth 进行认证
}