0

我已经为我的站点实现了一个基于 JAAS 表单的安全性,它应该保护名为“secured”的文件夹中的所有 .xhtml 文件,但在刷新该页面之前它不会。

在第一次访问时,url 也没有命名文件,只显示“faces/catalog.xhtml”,这是以前的未受保护的页面,然后如果我点击刷新它就可以工作。

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<context-param>
    <param-name>javax.faces.FACELETS_LIBRARIES</param-name>
    <param-value>/WEB-INF/bookstore.taglib.xml</param-value>
</context-param>
<servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
    <session-timeout>
        30
    </session-timeout>
</session-config>
<welcome-file-list>
    <welcome-file>faces/catalog.xhtml</welcome-file>
</welcome-file-list>
<security-constraint>
    <web-resource-collection>
        <web-resource-name>customer</web-resource-name>
        <description/>
        <url-pattern>/faces/secured/checkout.xhtml</url-pattern>
    </web-resource-collection>
    <auth-constraint>
        <role-name>customer</role-name>
    </auth-constraint>
</security-constraint>
<login-config>
    <auth-method>FORM</auth-method>
    <realm-name>myjdbc</realm-name>
    <form-login-config>
        <form-login-page>/login.xhtml</form-login-page>
        <form-error-page>/login_error.xhtml</form-error-page>
    </form-login-config>
</login-config>
<security-role>
    <role-name>customer</role-name>
</security-role>

哦,还像这样调用安全页面:

public String buy() {

    if (getNumberOfItems() < 1) {
        message(null, "CartEmpty");

        return (null);
    } else {
        return ("/secured/checkout");
    }
}

一段时间以来一直在尝试解决这个问题,感谢您的帮助。

4

0 回答 0