我有以下用户xhtml页面:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui"
xmlns:sec="http://www.springframework.org/security/tags">
<head>
<title>User</title>
</head>
<body>
<p>User</p>
<sec:authorize access="hasRole('ROLE_ADMIN')">
<p>Only admin can see this !</p>
</sec:authorize>
</body>
</html>
但是当我与没有角色ROLE_ADMIN的用户访问该页面时,他仍然可以看到&#34;只有管理员可以看到这个!&#34;
修改
这是我的spring security配置:
<?xml version="1.0" encoding="UTF-8"?>
<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"
xmlns:p="http://www.springframework.org/schema/p" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.2.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-3.2.xsd">
<http pattern="/resources" security="none" />
<http auto-config="true" use-expressions="true">
<intercept-url pattern="/login**" access="permitAll" />
<intercept-url pattern="/denied**" access="permitAll" />
<intercept-url pattern="/user/*" access="hasRole('ROLE_USER')" />
<intercept-url pattern="/admin/*" access="hasRole('ROLE_ADMIN')" />
<form-login login-page="/login.xhtml"
authentication-failure-url="/denied.xhtml"
authentication-success-handler-ref="securityAuthenticationSuccessHandler" />
<access-denied-handler error-page="/denied.xhtml" />
<logout logout-success-url="/login.xhtml" delete-cookies="JSESSIONID"
invalidate-session="true" />
</http>
<authentication-manager>
<authentication-provider user-service-ref="securityProviderServiceImpl">
<password-encoder hash="md5" />
</authentication-provider>
</authentication-manager>
</beans:beans>
它有什么问题吗?
谢谢..
编辑2:
对于安全标记lib &#34; xmlns:sec =&#34; http://www.springframework.org/security/tags"我有一个警告; &#34;
NLS missing message: CANNOT_FIND_FACELET_TAGLIB in: org.eclipse.jst.jsf.core.validation.internal.facelet.messages
重要吗?这是问题的原因吗?
我的maven安全依赖项:
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${org.springframework.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>${org.springframework.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${org.springframework.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>${org.springframework.security.version}</version>
</dependency>
答案 0 :(得分:2)
最后我解决了这个问题。
这些链接对我有很大帮助:
1)“Amreesh Tyagi”的回答How to use the Spring Security Facelets tag library in JSF。
和
2)本文的第3部分(Facelet的III安全标签)http://doanduyhai.wordpress.com/2012/02/26/spring-security-part-v-security-tags/
我使用了Amreesh Tyagi的 springsecurity.taglib.xml 文件而不是文章中的一篇,因为我遇到了访问函数的问题。
答案 1 :(得分:0)
在这里添加一个答案,因为我有相同的症状,但发现了一个不同的问题。 我们的标签没有按预期工作。每个人都可以看到安全的内容。 解决方案是我们的XML命名空间在页面上拼写错误。
xmlns="http://www.sprinfgramework.org/schema/security"
这需要一段时间才能找到,因为拼写错误没有产生错误(这是令人惊讶的),它只是忽略了安全标记并显示了它包含的内容。
希望这有助于某人。