我的网站开发存在问题... 事实证明,当在其中导航时,单词"面对"每当我在该页面中访问更多选项时重复...
一个例子:http://www.mipagina.com/faces/faces/faces/contactenos.xhtml ...
附上web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.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-app_3_0.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/index.xhtml</welcome-file>
</welcome-file-list>
</web-app>
答案 0 :(得分:0)
您应该在欢迎文件声明中删除前面的 faces 。 In my experience, / faces / 网址映射无法正常工作。我的理论是,您的欢迎文件会以 faces 为前缀进入Web应用程序,mojarra继续前进并预先设置更多。
你现在应该拥有的是:
<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>