RESTFul Webservice 注释中的问题
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
似乎
Path
注释存在于jersey-core
库中。我认为你应该将该库包含在你的项目中It seems that
Path
annotation exists injersey-core
library. I think you should include that library in your project添加 javax.ws.rs.jar 并导入:
需要帮助!
Add the javax.ws.rs.jar and import :
Is need to help!