web.xml中包含welcome-file-list中的不同文件

时间:2014-05-22 07:41:35

标签: java xml jsf jsf-2 web.xml

我开始使用JSF而且我有点迷失了。我正在开发一个JSF应用程序,我有两个输入点。

有时我需要浏览器打开名为mydata.xhtml的页面,有时我需要打开名为dataexchange.xhtml的页面。

现在我完成了第一个,应用程序运行正常。我想我必须改变我的web.xml文件,不是吗?

我的 web.xml 就是这个。

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
    <context-param>
        <param-name>javax.faces.PROJECT_STAGE</param-name>
        <param-value>Development</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/mydata.xhtml</welcome-file>
    </welcome-file-list>
</web-app></pre>

1 个答案:

答案 0 :(得分:1)

我认为web.xml中没有if-else逻辑选项

   <welcome-file-list>
        <welcome-file>faces/mydata.xhtml</welcome-file>
        <welcome-file>faces/dataexchange.xhtml</welcome-file>
    </welcome-file-list>

如果您将这两个文件放在欢迎文件列表中,容器将首先搜索mydata.xhtml,只有在找不到时,容器才会搜索并返回dataexchange。

或者,您可以拥有DispatcherServlet(

Either some framework provided or custom servlet with load on startup 1

) 从servlet中你可以返回你想要的xhtml。