我有一些问题。我为我的应用程序使用spring security,当我标记方法注释@Secured(“ROLE_ADMIN”)时,它不起作用。
@Secured("ROLE_ADMIN")
@RequestMapping(value = "/greeting",produces = "application/json")
public @ResponseBody List<UserEntity> greeting() {
return userService.getAllCurrentUsers();
}
此security-config.xml
<global-method-security secured-annotations="enabled" pre-post-annotations="enabled"/>
<http pattern="/resources/**" security="none"/>
<http pattern="/loginSecurity" security="none"/>
<http pattern="/favicon.ico" security="none" />
<http use-expressions="true">
<intercept-url pattern="/**" access="hasRole('ROLE_USER') or hasRole('ROLE_ADMIN')"/>
<form-login login-page="/loginSecurity" default-target-url="/workspace"/>
</http>
<authentication-manager>
<authentication-provider>
<password-encoder hash="bcrypt" />
<jdbc-user-service data-source-ref="dataSource"
authorities-by-username-query="SELECT userentity.username , roleentity.role_name from userentity
JOIN userentity_roleentity ON userentity.userid = userentity_roleentity.userlist_userid
JOIN roleentity ON userentity_roleentity.rolelist_role_name = roleentity.role_name
WHERE userentity.username = ?"
users-by-username-query="SELECT username,pwd,enable FROM userentity where username = ?"/>
</authentication-provider>
</authentication-manager>
身份验证有效。数据库中的角色是正确的。 这段代码也有效。
sec:authorize access="hasRole('ROLE_ADMIN')">
<button onclick="loadHeadRef('workspace','settings')">
<img src='<spring:url value="/resources/image/settings.png"/>' alt="">Settings</button>
</sec:authorize>
答案 0 :(得分:1)
尝试使用@PreAuthorize
@PreAuthorize("hasAnyRole('ROLE_USER','ROLE_ADMIN','ROLE_APPROVAL_PENDING')")
在spring-servlet.xml中输入以下内容
<security:global-method-security
pre-post-annotations="enabled" secured-annotations="enabled" />
<mvc:annotation-driven />