我开始使用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>
我不认为在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。