RESTFul Webservice 注释中的问题

发布于 2024-12-09 20:09:53 字数 368 浏览 0 评论 0原文

我正在尝试使用 Jersey 编写一个 RESTFul Web 服务。

package sample.hello.resources;

@Path("/hello")
public class HelloResource  {   
    @GET
    @Produces({MediaType.TEXT_PLAIN})
    public String sayHello() {
        return "Hello Jersey";
    }
}

我的 Eclipse 对所有注释都给出错误 - @Path,(路径无法解析为类型)

我是否需要包含任何其他库或在 Eclipse 中配置项目?

I am trying to write a RESTFul Webservice using Jersey.

package sample.hello.resources;

@Path("/hello")
public class HelloResource  {   
    @GET
    @Produces({MediaType.TEXT_PLAIN})
    public String sayHello() {
        return "Hello Jersey";
    }
}

My Eclipse give error for all the annotations - @Path, (Path cannot be resolved to a type)

Do I need to include any other libraries or configure the projects in Eclipse?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

胡渣熟男 2024-12-16 20:09:53

似乎 Path 注释存在于 jersey-core 库中。我认为你应该将该库包含在你的项目中

It seems that Path annotation exists in jersey-core library. I think you should include that library in your project

白昼 2024-12-16 20:09:53

添加 javax.ws.rs.jar 并导入:

import javax.ws.rs.Path;

需要帮助!

Add the javax.ws.rs.jar and import :

import javax.ws.rs.Path;

Is need to help!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文