gpt4 book ai didi

jsf - 部署后我无法访问我的简单 jsf 项目

转载 作者:行者123 更新时间:2023-11-28 22:21:29 26 4
gpt4 key购买 nike

我不明白为什么在尝试访问我的应用程序时出现 404 错误

我的 index.xhtml 在(网页内容)

在我的日志中我没有错误我使用 eclipse 创建了我的项目:web 动态项目:

我的网址:

http://localhost:8080/jsf_getting_started/

我尝试将 eclipse 与 tomcat 结合使用(在服务器上运行)。

我的网站 xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>jsf_getting_started</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>com.sun.faces.expressionFactory</param-name>
<param-value>com.sun.el.ExpressionFactoryImpl</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>
<context-param>
<description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>resources.application</param-value>
</context-param>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>

最佳答案

问题是你已经将 Faces Servlet 的映射设置为 /faces/* 所以为了访问你的页面并被这个 servlet 解析你必须像访问它一样

http://localhost:8080/jsf_getting_started/faces/index.xhtml

但是 /faces/* 配置的问题在于 Faces Servlet 甚至会处理非 JSF 资源,如图像、JS、CSS 脚本等。

最好的解决方案是将映射更改为 *.xhtml 并删除欢迎文件列表中的所有页面,使其只有 index.xhtml。您的 web.xml 文件将如下所示(请注意,我只是发布对此答案中描述的部分所做的更改):

<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
<!-- no need of the other files... -->
</welcome-file-list>

<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<!-- The relevant URL mapping when using Facelets and JSF -->
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>

更改 web.xml 文件后,重建您的项目,确保从 Tomcat 服务器取消部署并重试。

关于jsf - 部署后我无法访问我的简单 jsf 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15999273/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com