Categories
Uncategorized

spring security

spring security 提供两种安全 检验模式

一种是 使用 传统的 filter chain

另一种是使用 WebSecurityConfigurerAdapter

使用类似

((HttpSecurity)((HttpSecurity)((AuthorizedUrl)http.authorizeRequests().anyRequest()).authenticated().and()).formLogin().and()).httpBasic();

这种语法

Leave a Reply