有沒有一種方法可以使用我的config.properties中的布爾securityEnabled禁用全局方法安全性?任何其他方法?謝謝。禁用EnableGlobalMethodSecurity註釋
@EnableWebSecurity @EnableGlobalMethodSecurity(securedEnabled =真) @PropertySource( 「類路徑:config.properties」)公共類 SecurityConfig擴展WebSecurityConfigurerAdapter {
@Value( 「$ {} securityconfig.enabled」) private boolean securityEnabled;
...
}
你必須通過註釋辦呢?有簡單的方法如何在XML配置文件中做到這一點 – shark
我寧願使用我所有的配置與春天java配置 –