gpt4 book ai didi

rest - 单个 Jersey GET 资源所需的最低限度?

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

我遗漏了一些明显的东西,但我不确定是什么。我有一个“HelloWorld.java”,它有一个返回一些文本的@GET 方法。

我的 web.xml 取自 this doc (描述为“一种更简单的方法是让 Jersey 自动选择 PackagesResourceConfig 实现......”):

<web-app>
<servlet>
<servlet-name>HelloWorld</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>com.hello.rest</param-value>
</init-param>
</servlet>
</web-app>

这是我的类(class)(大部分取自 here ):

package com.hello.rest;

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

@Path("/helloworld")
public class HelloWorld {
@GET
@Produces("text/json")
public String getHelloWorld() {
return "{\"hello\":\"World\"}";
}
}

我用ant构建了一个war文件,然后部署到tomcat。 war 看起来是正确的,因为 tomcat 解压缩了它,我可以访问我放入其中进行测试的静态 index.html。但是访问 localhost:8080/helloworld 给我一个 404。为了让 Jersey 工作,我必须有一些其他的东西。我错过了什么?

谢谢 Bozho,我错过了 <servlet-mapping>部分。实际上,我似乎不想要“/”作为 url 模式,因为这会阻止提供静态内容(我无法再获取我的 index.html 页面!)所以这是我的新 web.xml(我把我的资源在“/数据/”路径中):

<web-app>
<servlet>
<servlet-name>HelloWorld</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>com.hello.rest</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>HelloWorld</servlet-name>
<url-pattern>/data/*</url-pattern>
</servlet-mapping>
</web-app>

现在我可以使用 http://localhost:8080/hello/index.html 访问我的 index.html 页面, 我的资源在 http://localhost:8080/hello/data/helloworld .

最佳答案

你必须用 <servlet-mapping> 映射你的 servlet , 与 /作为url-pattern

关于rest - 单个 Jersey GET 资源所需的最低限度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4503672/

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