protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.anyRequest().authenticated()
.and()
.formLogin()
.and()
.httpBasic();
}
上面的默认配置:
-
确保我们应用中的所有请求都需要用户被认证
-
允许用户进行基于表单的认证
-
允许用户使用HTTP基于验证进行认证