0
我試圖配置Spring安全阻止只有請求swagger,但它阻止所有的URL。 有誰知道如何鎖定招搖的網址,並讓所有其餘的不安全?如何保護只有一個網址與彈簧安全性,並允許所有
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable()
.authorizeRequests().anyRequest().permitAll()
.and()
.authorizeRequests()
.antMatchers("/swagger*/**").authenticated();
http.httpBasic();
}
這難道不是阻止一切,而是狂妄? –
這是bloking我的posthost localhost:8012/bus/refresh –