WildFly returns 404 错误,而同一个 Maven 项目在 TomEE 上运行良好
WildFly returns 404 error while same Maven project works fine on TomEE
我正在尝试使用 Eclipse 和 Java-ee 8 创建 Hello World Web 应用程序,但我无法访问 .xhtml 文件,出现 404 错误。
是Maven项目。
在服务器上部署和 运行 之前,即 WildFly 21.0.2,我执行 Maven -> Update 和 运行 as -> Maven -> Clean 验证。
服务器启动正常,因为我可以在本地主机上访问它。
我尝试访问的页面是 index.xhtml,它位于 WEB-INF 文件夹旁边的 webapp 文件夹中。
有一个类似的问题:,但重新启动 Eclipse 没有帮助。
当我部署到 Apache TomEE 8.0.5 Web 配置文件时可以访问页面。
当我将 java-ee-8 应用程序部署到 WildFly 21.0.2 服务器(也尝试过 19.1.0)时,我无法访问 xhtml 页面。我收到 404 错误代码。当我部署到 Apache TomEE 8.0.5 Web 配置文件时,可以访问页面。两台服务器都兼容 java-ee-8 并成功启动。控制台和日志中都没有错误。
没有对服务器进行任何配置,我只是将它们添加到 Eclipse 并启动。部署了相同的项目。有谁知道问题出在哪里?我想将我的应用程序部署到 WildFly,而不是 TomEE。
TomEE 启动日志,还有访问页面:https://textuploader.com/185ql
WildFly 启动日志(尝试访问页面时控制台中没有任何内容):https://textuploader.com/185qc
项目结构:
pom.xml:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>vis</groupId>
<artifactId>eshop-web</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>8.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
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_4_0.xsd"
version="4.0">
<display-name>eshop-web</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>*.xhtml</url-pattern>
</servlet-mapping>
</web-app>
index.xhtml:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:fn="http://java.sun.com/jsp/jstl/functions"
xmlns:h="http://java.sun.com/jsf/html">
<head>
<title>Hello World</title>
</head>
<body style="background-color: lightgrey;">
<h2>Hello World</h2>
</body>
</html>
项目方面:
Url 我正在尝试访问的是:http://localhost:8080/eshop-web/index.xhtml
也试过:http://localhost:8080/index.xhtml、http://localhost:8080/webapp/index.xhtml,还是找不到页面。我认为这可能是项目配置错误。
URL I am trying to access is this: http://localhost:8080/eshop-web/index.xhtml
上下文路径错误。
对于 WildFly,实际使用的上下文路径使用键 WFLYUT0021
记录。
搜索此键时在您的 WildFly 启动日志中找到以下行:
23:00:04,727 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 81) WFLYUT0021: Registered web context: '/javaee-test-0.0.1-SNAPSHOT' for server 'default-server'
因此,相应地调整 URL:http://localhost:8080/javaee-test-0.0.1-SNAPSHOT/index.xhtml
我正在尝试使用 Eclipse 和 Java-ee 8 创建 Hello World Web 应用程序,但我无法访问 .xhtml 文件,出现 404 错误。
是Maven项目。
在服务器上部署和 运行 之前,即 WildFly 21.0.2,我执行 Maven -> Update 和 运行 as -> Maven -> Clean 验证。
服务器启动正常,因为我可以在本地主机上访问它。
我尝试访问的页面是 index.xhtml,它位于 WEB-INF 文件夹旁边的 webapp 文件夹中。
有一个类似的问题:
当我部署到 Apache TomEE 8.0.5 Web 配置文件时可以访问页面。
当我将 java-ee-8 应用程序部署到 WildFly 21.0.2 服务器(也尝试过 19.1.0)时,我无法访问 xhtml 页面。我收到 404 错误代码。当我部署到 Apache TomEE 8.0.5 Web 配置文件时,可以访问页面。两台服务器都兼容 java-ee-8 并成功启动。控制台和日志中都没有错误。
没有对服务器进行任何配置,我只是将它们添加到 Eclipse 并启动。部署了相同的项目。有谁知道问题出在哪里?我想将我的应用程序部署到 WildFly,而不是 TomEE。
TomEE 启动日志,还有访问页面:https://textuploader.com/185ql
WildFly 启动日志(尝试访问页面时控制台中没有任何内容):https://textuploader.com/185qc
项目结构:
pom.xml:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>vis</groupId>
<artifactId>eshop-web</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>8.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
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_4_0.xsd"
version="4.0">
<display-name>eshop-web</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>*.xhtml</url-pattern>
</servlet-mapping>
</web-app>
index.xhtml:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:fn="http://java.sun.com/jsp/jstl/functions"
xmlns:h="http://java.sun.com/jsf/html">
<head>
<title>Hello World</title>
</head>
<body style="background-color: lightgrey;">
<h2>Hello World</h2>
</body>
</html>
项目方面:
Url 我正在尝试访问的是:http://localhost:8080/eshop-web/index.xhtml 也试过:http://localhost:8080/index.xhtml、http://localhost:8080/webapp/index.xhtml,还是找不到页面。我认为这可能是项目配置错误。
URL I am trying to access is this: http://localhost:8080/eshop-web/index.xhtml
上下文路径错误。
对于 WildFly,实际使用的上下文路径使用键 WFLYUT0021
记录。
搜索此键时在您的 WildFly 启动日志中找到以下行:
23:00:04,727 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 81) WFLYUT0021: Registered web context: '/javaee-test-0.0.1-SNAPSHOT' for server 'default-server'
因此,相应地调整 URL:http://localhost:8080/javaee-test-0.0.1-SNAPSHOT/index.xhtml