所有HTTP安全啓動應用:配置Spring HTTP安全性在運行
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/admin/**").hasRole("admin")
}
在運行時,我想多給它添加...
applicationContext.getBean(WebSecurityConfigurerAdapter).http.authorizeRequests().antMatchers("bla").hasRole("admin")
在執行這條線,它將它添加到http.authorizeRequests()中,但/ bla仍可通過「非管理員」訪問
當服務器重新啓動時,此更改將生效,因爲它正從數據庫加載bla。
如何在不重新啓動服務器的情況下立即生效?
您是否得到了解決方案? – theLearner
nope,如果你知道一個請分享:D –