gpt4 book ai didi

java - 将 Jersey 和 Apache Tomcat 用于 Web Api 时出现 404 错误

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

我正在尝试使用 Eclipse/Java,并且正在 Eclipse 中创建一个动态 Web 项目。我已经在线学习了教程并查看了其他几篇 Stackoverflow 帖子,但我仍然遇到同样的问题。

当我运行我的服务器并尝试访问我的端点 /test 时,我收到 404 错误。这是我的代码:

我的 Java 类:

package TestPackage;

import javax.ws.rs.Path;
import javax.ws.rs.GET;

@Path("/test")
public class Test {
@GET
public String Hello() {
return "hello";
}
}

我的 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>RestDemo</groupId>
<artifactId>RestDemo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<warSourceDirectory>WebContent</warSourceDirectory>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<version>2.25</version>
</dependency>
</dependencies>
</project>

我读到,如果您使用的是 Jersey 2.+,则无需摆弄 web.xml,因此它是标准格式:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">
<display-name>RestDemo</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>
</web-app>

因此,当我尝试调用 http://localhost:8080/RestDemo/test 时,出现 404 错误。知道发生了什么事吗?

最佳答案

在 Servlet 2.5 环境中,您必须在 Web 应用程序的 web.xml 部署描述 rune 件中显式声明 Jersey 容器 Servlet。

根据 https://jersey.java.net/documentation/latest/user-guide.html#deployment.servlet

示例 4.10。将 Jersey 连接为 Servlet

<web-app>
<servlet>
<servlet-name>MyApplication</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
...
</init-param>
</servlet>
...
<servlet-mapping>
<servlet-name>MyApplication</servlet-name>
<url-pattern>/myApp/*</url-pattern>
</servlet-mapping>
...
</web-app>

关于java - 将 Jersey 和 Apache Tomcat 用于 Web Api 时出现 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41686960/

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