获取 HTTP 状态 404 - 未找到,当动态 Web 项目的名称重命名并使用 Eclipse 部署在 Glassfish 上时
Get HTTP Status 404 - Not Found, when the name of a dynamic web project renamed and deployed on Glassfish with Eclipse
当我将使用 JSF v2.2 的动态 Web 项目的名称重命名为 Eclipse 2019.03 本身创建的配置时,我使用 Eclipse 在 glassfish v5.1 上重新部署它,
获取 HTTP 状态 404 - 未找到...虽然它在重命名项目名称之前运行良好。
web.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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>test1</display-name>
<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>
<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
</web-app>
/WebContent
中有一个简单的index.xhtml
我注意到在Eclipse自己创建一个新的JSF作为配置的动态web项目时,如果你使用Glassfish作为服务器,[=14=中会多出一个名为glassfish-web.xml的文件]目录。
重命名动态 Web 项目名称时,应手动将 glassfissh-web.xml 文件的以下行修改为项目的新名称:
<context-root>/testProject</context-root>
当我将使用 JSF v2.2 的动态 Web 项目的名称重命名为 Eclipse 2019.03 本身创建的配置时,我使用 Eclipse 在 glassfish v5.1 上重新部署它, 获取 HTTP 状态 404 - 未找到...虽然它在重命名项目名称之前运行良好。
web.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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>test1</display-name>
<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>
<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
</web-app>
/WebContent
我注意到在Eclipse自己创建一个新的JSF作为配置的动态web项目时,如果你使用Glassfish作为服务器,[=14=中会多出一个名为glassfish-web.xml的文件]目录。
重命名动态 Web 项目名称时,应手动将 glassfissh-web.xml 文件的以下行修改为项目的新名称:
<context-root>/testProject</context-root>