S安全配置

配置 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 进行认证
}
上一篇:WebSocket连接请求被Spring Security拦截, WebSocket无法连接


下一篇:Spring MVC Unauthorized问题