为什么 tomcat 显示现有资源的 404 响应消息?
why does tomcat show 404 response message for an existing resource?
我是实施 Web 服务的新手,我正在使用 jax-rs API 使用 eclipse IDE 为 java-ee 开发人员 2022 实现它。
我编写了一个简单的 Web 服务,其中 returns 一个包含 java 对象的响应对象,该对象已使用 JAXB 转换为 XML,当我 运行它在 tomcat10 上返回一条 404 消息。
我听说过一些可能的原因,例如 URI 输入错误,但似乎并非如此。
我用过jersey archetype,神器:jersey-quickstart-webapp
我的项目结构。
我的 web.xml 文件:
<?xml version="1.0" encoding="UTF-8"?>
<!-- This web.xml file is not required when using Servlet 3.0 container,
see implementation details http://jersey.java.net/nonav/documentation/latest/jax-rs.html -->
<web-app version="2.5" 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_2_5.xsd">
<servlet>
<servlet-name>Jersey Web Application</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>ir.Institude.BackendCode.Jax-rs</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey Web Application</servlet-name>
<url-pattern>/webapi/*</url-pattern>
</servlet-mapping>
</web-app>
我的 jax-rs 服务 class :
package ir.Institude.BackendCode.Servicers;
import ir.Institude.BackendCode.Entities.UserXmlInformation;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.core.Response.Status;
@Path("user")
public class UserRequestServicer {
@GET
@Path("/write")
@Produces("application/xml")
public Response UserInformationReciever() {
return Response.ok(new UserXmlInformation()).build();
}
}
我的 pom 文件:
<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 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>Ir.Institude.BackendCode.Services</groupId>
<artifactId>Jax-rs</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>Jax-rs</name>
<build>
<finalName>Jax-rs</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<inherited>true</inherited>
<configuration>
<source>16</source>
<target>16</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<!-- use the following artifactId if you don't need servlet 2.x compatibility -->
<!-- artifactId>jersey-container-servlet</artifactId -->
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>3.0.2</version>
</dependency>
<!-- uncomment this to get JSON support
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-binding</artifactId>
</dependency>
-->
</dependencies>
<properties>
<jersey.version>3.0.4</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
tomcat
我不想通过粘贴这么多行代码使我的问题比这更长。如果需要我的项目的任何其他部分,请告诉我粘贴它。
问题已编辑。
添加了 pom 文件,添加了球衣原型
问题:
- 请检查您的端口号。
请使用 localhost:9999 检查您是否获得 tomcat 主页
- "Jax-rs"是你的应用名称,如果不是请换成你的应用名称
- 为什么你的请求中有 webapi url,而你的资源中没有提到它。您的控制器正在寻找 /user/write.
答案竟然不是用jersey。我真的不知道为什么以及如何忘记球衣并开始使用 resteasy 解决了这个问题。
还添加了 resteasy servlet 初始化程序依赖项:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-servlet-initializer</artifactId>
<version>6.0.0.Final</version>
</dependency>
我是实施 Web 服务的新手,我正在使用 jax-rs API 使用 eclipse IDE 为 java-ee 开发人员 2022 实现它。
我编写了一个简单的 Web 服务,其中 returns 一个包含 java 对象的响应对象,该对象已使用 JAXB 转换为 XML,当我 运行它在 tomcat10 上返回一条 404 消息。 我听说过一些可能的原因,例如 URI 输入错误,但似乎并非如此。
我用过jersey archetype,神器:jersey-quickstart-webapp
我的项目结构。
我的 web.xml 文件:
<?xml version="1.0" encoding="UTF-8"?>
<!-- This web.xml file is not required when using Servlet 3.0 container,
see implementation details http://jersey.java.net/nonav/documentation/latest/jax-rs.html -->
<web-app version="2.5" 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_2_5.xsd">
<servlet>
<servlet-name>Jersey Web Application</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>ir.Institude.BackendCode.Jax-rs</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey Web Application</servlet-name>
<url-pattern>/webapi/*</url-pattern>
</servlet-mapping>
</web-app>
我的 jax-rs 服务 class :
package ir.Institude.BackendCode.Servicers;
import ir.Institude.BackendCode.Entities.UserXmlInformation;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.core.Response.Status;
@Path("user")
public class UserRequestServicer {
@GET
@Path("/write")
@Produces("application/xml")
public Response UserInformationReciever() {
return Response.ok(new UserXmlInformation()).build();
}
}
我的 pom 文件:
<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 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>Ir.Institude.BackendCode.Services</groupId>
<artifactId>Jax-rs</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>Jax-rs</name>
<build>
<finalName>Jax-rs</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<inherited>true</inherited>
<configuration>
<source>16</source>
<target>16</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<!-- use the following artifactId if you don't need servlet 2.x compatibility -->
<!-- artifactId>jersey-container-servlet</artifactId -->
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>3.0.2</version>
</dependency>
<!-- uncomment this to get JSON support
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-binding</artifactId>
</dependency>
-->
</dependencies>
<properties>
<jersey.version>3.0.4</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
tomcat
我不想通过粘贴这么多行代码使我的问题比这更长。如果需要我的项目的任何其他部分,请告诉我粘贴它。
问题已编辑。
添加了 pom 文件,添加了球衣原型
问题:
- 请检查您的端口号。 请使用 localhost:9999 检查您是否获得 tomcat 主页
- "Jax-rs"是你的应用名称,如果不是请换成你的应用名称
- 为什么你的请求中有 webapi url,而你的资源中没有提到它。您的控制器正在寻找 /user/write.
答案竟然不是用jersey。我真的不知道为什么以及如何忘记球衣并开始使用 resteasy 解决了这个问题。
还添加了 resteasy servlet 初始化程序依赖项:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-servlet-initializer</artifactId>
<version>6.0.0.Final</version>
</dependency>