我想在春季安全配置安全註釋。但我有一個關於這個問題 -安全註釋在春季安全
....
<security:http auto-config="true" use-expressions="true">
....
,當我使用
@Secured("CUSTOM_ACCESS")
public String query();
這是行不通的。但我用
@PreAuthorize("hasRole('CUSTOM_ACCESS')")
public String query();
它工作正常並應用相關角色。這是否意味着@Secured註釋不能與@PreAuthorize一起使用?
我也嘗試添加
<security:global-method-security secured-annotations="enabled" />
但它並不能幫助。
<security:global-method-security pre-post-annotations="enabled" />
上述配置工作正常。有任何想法嗎?
我可以有這樣的兩個嗎?' \t' –
user12458
2014-10-25 13:29:29