我在测试的项目上引进了spring security 基于名称空间配置的安全架构,遇到一个问题,请指教下!
配置代码如下:
<!----><beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.xsd"><global-method-security secured-annotations="enabled"> </global-method-security> <http access-denied-page="/error.jsp" session-fixation-protection="newSession" auto-config="true" path-type="ant"><!----> <!----> <intercept-url pattern="/acegiTest.do" access="ROLE_SUPERVISOR"> <intercept-url pattern="/index.jsp" access="IS_AUTHENTICATED_REMEMBERED"> <intercept-url pattern="/role1.jsp" access="ROLE_USER_1"> <intercept-url pattern="/role2.jsp" access="ROLE_USER_2"> <intercept-url pattern="/role3.jsp" access="ROLE_USER_3"> <intercept-url pattern="/**" access="IS_AUTHENTICATED_ANONYMOUSLY"> <!----> <!----> <form-login login-page="/login.jsp" default-target-url="/index.jsp" authentication-failure-url="/login.jsp?login_error=1"> <anonymous key="cookie_key" username="ananoymous" granted-authority="IS_AUTHENTICATED_ANONYMOUSLY"> <logout invalidate-session="true"> <!----> <concurrent-session-control max-sessions="1" exception-if-maximum-exceeded="false"><!----> </http> <authentication-provider> <password-encoder hash="md5"><!----> <jdbc-user-service data-source-ref="f3CenterDS" users-by-username-query="select name as 'username',password,'true' from users where name = ?" authorities-by-username-query="select name as 'username',authorities as 'authority' from authentication where name =?"> </authentication-provider>
</beans:beans>
authorities-by-username-query="select name as 'username',authorities as 'authority' from authentication where name =?",如果数据库里分配多个权限给用户的话,用户登入系统就不能正常使用(不能访问),倘若只分配一个权限则可以正常访问,还请指教一二!!!
<user-service>
<user name="user" password="123" authorities="ROLE_SUPERVISOR, ROLE_USER_1">
</user-service>
应该是你权限表结构的问题。你是用单个字段来表示多个权限吧。这字段内容是用 "," 逗号分隔开的字符串。
authorities-by-username-query="select name as 'username',authorities as 'authority' from authentication where name =?"
这个你只返回一条记录。“user1 ROLE_USER_1, ROLE_USER_2 ”。
这是问题所在。
spring security 默认的 authorities-by-username-query是
"SELECT username,authority FROM authorities WHERE username = ?";
正常是类似返回
user1 ROLE_USER_1
user1 ROLE_USER_2
多条记录集。
权限表应该类似如下结构
create table "authorities" (
"username" varchar2(32),
"authority" VARCHAR2(32) not null
);
alter table "authorities"
add constraint FK_AUTHORIT_REF_USERS_USERNAME foreign key ("username")
references "users" ("username");
看配置文件,没发现哪有问题。你确认一下如果数据库里分配多个权限给用户的话,select name as 'username',authorities as 'authority' from authentication where name =? 这语句的查询结果。