spring boot security設(shè)置忽略地址不生效的解決
spring boot security設(shè)置忽略地址不生效
最近在試下微服務(wù)改造,出現(xiàn)這樣一個問題所有請求都經(jīng)過spring cloud gateway進行認證授權(quán)后再訪問后端數(shù)據(jù)方服務(wù),但有些需要合作機構(gòu)回調(diào),由于進行了security認證,最終的方案是對回調(diào)地址進行忽略auth認證。
最終security主要代碼如下:
@Configuration @EnableWebSecurity public class WebSecurityConfig extends WebSecurityConfigurerAdapter { @Override public void configure(WebSecurity web) throws Exception { web.ignoring().antMatchers("/v1/prNotifyBack"); } @Override protected void configure(HttpSecurity http) throws Exception { /**表示所有的訪問都必須進行認證處理后才可以正常進行*/ http.httpBasic().and().authorizeRequests().anyRequest().fullyAuthenticated(); /**所有的Rest服務(wù)一定要設(shè)置為無狀態(tài),以提升操作性能*/ http.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS); http.csrf().disable(); } }
這個過程遇到了幾個問題:
1、繼承WebSecurityConfigurerAdapter
后我們重寫configure方法,這個方法需要注意:他有兩個不同的參數(shù)。
HttpSecurity 及WebSecurity 作用是不一樣的,WebSecurity 主要針對的全局的忽略規(guī)則,HttpSecurity主要是權(quán)限控制規(guī)則。
所以一開始用HttpSecurity是達不到忽略地址的目的。
protected void configure(HttpSecurity http){.......} public void configure(WebSecurity web) {.........}
WebSecurity
全局請求忽略規(guī)則配置(比如說靜態(tài)文件,比如說注冊頁面)、全局HttpFirewall配置、是否debug配置、全局SecurityFilterChain配置、privilegeEvaluator、expressionHandler、securityInterceptor、
HttpSecurity
具體的權(quán)限控制規(guī)則配置。
2、忽略不生效問題
web.ignoring().antMatchers("/pr/v1/prNotifyBack");
如上代碼如果帶上/pr就不會生效,訪問依然會出現(xiàn)401錯誤。/pr是配置的項目路徑。但帶上項目路徑就不生效,這個問題很疑惑。
server: port: 8089 servlet: context-path: /pr
SpringBoot SpringSecurity, web.ignore失效
@Configuration @EnableGlobalMethodSecurity(prePostEnabled=true) public class CustomSecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and() .csrf().disable() .authorizeRequests() .antMatchers("/api/**").authenticated() .and() .addFilterBefore(new TokenFilter(), UsernamePasswordAuthenticationFilter.class); } @Override public void configure(WebSecurity web) throws Exception { web.ignoring() .antMatchers("/") .antMatchers("/swagger-ui.html") .antMatchers("/swagger-resources/**") .antMatchers("/webjars/springfox-swagger-ui/**") .antMatchers("/v2/api-docs/**"); } }
這是修改后正常工作的配置文件
之前使用@component注解, 然后使用@Resource注入進來.
導(dǎo)致過濾器全局生效.
正常配置,應(yīng)該手動new, 而且過濾器類不能加@Component注解
具體原因,之后有空研究一下.
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
Apache Calcite進行SQL解析(java代碼實例)
Calcite是一款開源SQL解析工具, 可以將各種SQL語句解析成抽象語法樹AST(Abstract Syntax Tree), 之后通過操作AST就可以把SQL中所要表達的算法與關(guān)系體現(xiàn)在具體代碼之中,今天通過代碼實例給大家介紹Apache Calcite進行SQL解析問題,感興趣的朋友一起看看吧2022-01-01SpringCloud搭建netflix-eureka微服務(wù)集群的過程詳解
這篇文章主要介紹了SpringCloud搭建netflix-eureka微服務(wù)集群的過程詳解,本文給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2021-04-04