如果多個配置類具有@EnableGlobalMethodSecurity
註釋,那麼是否使用了一個註釋?多個@EnableGlobalMethodSecurity註釋
在彈簧啓動應用程序中,有兩個WebSecurityConfigurerAdapter
的實例 - 一個註釋爲@EnableGlobalMethodSecurity(secured = true)
,另一個爲@EnableGlobalMethodSecurity(prePostEnabled = true)
。但到目前爲止,我無法使@PreAuthorize
註釋生效。只有一個註釋可以看到它正在被應用。 如
@Configuration
@Order(Ordered.HIGHEST_PRECEDENCE)
@EnableGlobalMethodSecurity(prePostEnabled=true)
public class FirstConfigurer extends WebSecurityConfigurerAdapter {
...
@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(securedEnabled = true)
public class AnotherConfiguration extends WebSecurityConfigurerAdapter{
...
是否彈簧安全支持多種配置類是與@EnableGlobalMethodSecurity註解?
有沒有辦法查看實際配置的內容?