richfaces + index.xhtml有错误

时间:2012-03-09 23:29:43

标签: java jsf-2 richfaces

我无法正确加载我的index.xhtml文件,并且我已经检查了所有教程。有人可以指出我正确的方向吗?我只是浏览了richfaces网站上的教程。

以下是我的web.xml文件:

<?xml version="1.0"?>
<web-app version="2.5" 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_2_5.xsd">
<display-name>Greeter</display-name>

<context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>server</param-value>
</context-param>

<context-param>
    <param-name>org.richfaces.SKIN</param-name>
    <param-value>blueSky</param-value>
</context-param>

<context-param>
    <param-name>org.richfaces.CONTROL_SKINNING</param-name>
    <param-value>enable</param-value>
</context-param>

<filter>
    <display-name>RichFaces Filter</display-name>
    <filter-name>richfaces</filter-name>
    <filter-class>org.ajax4jsf.Filter</filter-class>
</filter>

<filter-mapping>
    <filter-name>richfaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>INCLUDE</dispatcher>
</filter-mapping>

<listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>

<!-- Faces Servlet -->
<servlet>
    <servlet-name>Loader</servlet-name>
    <servlet-class>com.mounza.common.Loader</servlet-class>
    <load-on-startup>2</load-on-startup>
</servlet>
<servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>

<context-param>
  <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
  <param-value>.xhtml</param-value>
</context-param>

<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
</servlet-mapping>

<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
</servlet-mapping>

<welcome-file-list>
    <welcome-file>index.jsf</welcome-file>
</welcome-file-list>

<session-config>
    <session-timeout>
        30
    </session-timeout>
</session-config>

1 个答案:

答案 0 :(得分:4)

你在谈论<welcome-file>,对吗? 必须指向物理存在的文件,因为servletcontainer在内部使用它来在请求文件夹时显示默认资源。 servletcontainer将首先检查文件是否存在,然后再执行转发。如果该文件不存在,您将获得404.

将此与在虚拟URL上执行的JSF相结合只需要特殊技巧。您基本上需要在真实index.jsf文件旁边的文件夹中使用物理上存在但为空的 index.xhtml文件来欺骗servletcontainer。这样servlet容器不会显示404,而是执行转发到文件,这将自动触发FacesServlet

但是,如果您碰巧已经使用了JSF 2.x(似乎并非如此,但无论如何,仅仅是为了完整性),那么您也可以只更改{{1}的URL模式}从FacesServlet(和*.jsf)到/faces/*。这样您就不需要再使用虚拟URL了。这在JSF 1.x中是不可能的,因为*.xhtml将继续在无限循环中调用自己。