我遇到了尝试从DB更新我的角色的问题。是否可以以编程方式将配置添加到spring安全性。 e.g。
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/admin/**").hasRole("ADMIN");
我可以通过编程方式添加新的配置.antMatchers("/user-service/**").hasRole("USER_DRIVER");
吗?
我尝试使用spring boot添加预定作业来刷新配置。但是,他们不被接受。
帮助表示感谢。
非常感谢。