gpt4 book ai didi

java - REST,Tomcat,Jersey,IntelliJ,产生 404

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

这让我抓狂。我已经尝试了关于相同错误的大约五个 Stack Overflow 问题中的所有方法,但无济于事。

我的 web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>Spotitube</display-name>
<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>com.spotitube</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey Web Application</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>

我的服务:

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

@Path("/myresource")
public class myresource {

/**
* Method handling HTTP GET requests. The returned object will be sent
* to the client as "text/plain" media type.
*
* @return String that will be returned as a text/plain response.
*/
@GET
@Produces({ MediaType.TEXT_HTML, MediaType.TEXT_PLAIN })
public String getIt() {
return "Got it!";
}
}

我的 pom.xml,它应该以某种方式相关:

<?xml version="1.0" encoding="UTF-8"?>
<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>spotitube</groupId>
<artifactId>spotitube3</artifactId>
<version>1.0-SNAPSHOT</version>

<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>
</dependency>
</dependencies>

<properties>
<jersey.version>2.23.2</jersey.version>
</properties>
</project>

index.jsp 只包含指向我的服务的链接,位于 localhost:8080/rest/myresource。网址 checkout 。

我试过 Tomcat 7 和 8.5。我的 IDE 是 IntelliJ 2017.2.5。我已经按照我所遵循的教程添加了所有 jar 文件,并且 Tomcat 工作正常。只有在 RESTful 页面(而不是在 index.jsp)它才会给出 404。

我现在觉得很蠢。任何人都知道可能发生的事情吗?

最佳答案

因为映射 URL 是 localhost:8080/myresource 而不是 localhost:8080/rest/myresource

关于java - REST,Tomcat,Jersey,IntelliJ,产生 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47135192/

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