我正在使用JSF为项目创建一个网站,我使用子目录来管理用户能够访问哪些页面。
我的WAR项目组织如下:
+Web Pages
+User
movies.xhtml
+WEB-INF
//beans, faces-config, glassfish-web, and web.xml here
+images
+resources
+css
header.css
+templates
header.xhtml
index.xhtml
//other views
我的导航规则如下
<navigation-rule>
<from-view-id>/login.xhtml</from-view-id>
<navigation-case>
<from-outcome>movies</from-outcome>
<to-view-id>/User/movies.xhtml</to-view-id>
</navigation-case>
<navigation-case>
<from-view-id>*</from-view-id>
<from-outcome>index</from-outcome>
<to-view-id>/index.xhtml</to-view-id>
<from-outcome>create</from-outcome>
<to-view-id>/create.xhtml</to-view-id>
<from-outcome>help</from-outcome>
<to-view-id>/help.xhtml</to-view-id>
<from-outcome>login</from-outcome>
<to-view-id>/login.xhtml</to-view-id>
<from-outcome>search</from-outcome>
<to-view-id>/search.xhtml</to-view-id>
</navigation-case>
我的web.xml servlet-mapping如下:
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<!-- Faces Servlet Mapping -->
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/vd/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>vd/index.xhtml</welcome-file>
</welcome-file-list>
现在,我的导航规则没有问题,它将我带到/User/movies.xhtml。但是,一旦我在/User/movies.xhtml中,JSF找不到我的任何页面(IE.index.xhtml)。但是,它仍然可以找到movies.xhtml使用的模板。
为什么JSF无法找到其他视图的位置?我该如何更改导航规则以便找到它们?
我在Glassfish v3.1.2上运行。
答案 0 :(得分:0)
我弄清楚问题是什么。我停止使用导航案例并使用JSF 2的隐式导航,一切正常。