1

我正在使用 JSF 2.0

这是我的 faces-config.xml

<?xml version="1.0" encoding="UTF-8"?>
<!-- This file is not required if you don't need any extra configuration. -->
<faces-config version="2.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-facesconfig_2_0.xsd">

    <navigation-rule>
        <from-view-id>/pages/test/test.html</from-view-id>
        <navigation-case>
            <from-outcome>write</from-outcome>
            <to-view-id>/pages/test/test-write.html</to-view-id>
        </navigation-case>

    </navigation-rule>

</faces-config>

TestController.java

@ManagedBean(name="testController")
@SessionScoped
public class TestController implements Serializable {

    private static final long serialVersionUID = -3244711761400747261L; 

    public String test() {


        return "write?faces-redirect=true";
}

在我的 test.xhtml 文件中

<?xml version="1.0" encoding="UTF-8"?>
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    template="/WEB-INF/templates/default.xhtml">
    <ui:define name="content">
            <h:form>
                    <h:commandButton action="#{testController.test()}" value="test" />  
            </h:form>
    </ui:define>

</ui:composition>

这是我的 web.xml

<web-app 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"
    version="3.0">
    <display-name>Bachelor Demo</display-name>      

    <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>*.html</url-pattern>
    </servlet-mapping>
</web-app>

我错过了什么?

4

1 回答 1

9

视图 ID 不应包含FacesServlet映射。它应该代表物理文件路径/名称。更改.html.xhtml。您还应该删除?faces-redirect=true并将 a 添加<redirect /><navigation-case>.

<navigation-rule>
    <from-view-id>/pages/test/test.xhtml</from-view-id>
    <navigation-case>
        <from-outcome>write</from-outcome>
        <to-view-id>/pages/test/test-write.xhtml</to-view-id>
        <redirect />
    </navigation-case>
</navigation-rule>

顺便说一下,这是旧的 JSF 1.x 风格。您知道新的 JSF2 隐式导航吗?你可以直接返回"/pages/test/test-write.xhtml?faces-redirect=true"

public String test() {
    return "/pages/test/test-write.xhtml?faces-redirect=true";
}

不再需要臃肿的 XML 导航案例。

此外,如果您的操作方法真的没有做任何其他事情,那么您也可以将返回值准确地放在action属性中。

<h:commandButton ... action="/pages/test/test-write.xhtml?faces-redirect=true" />

更重要的是,如果它是简单的页面到页面导航,请<h:link>改为使用。由于搜索机器人不索引 POST 表单,因此对 SEO 更友好:

<h:link ... outcome="/pages/test/test-write.xhtml" />
于 2012-03-21T16:08:26.930 回答