Java Jersey 声明性超链接配置
我对泽西岛文档第 6 章感到困惑 http://jersey.java.net/nonav/documentation/latest/linking.html
配置部分(6.5)没有说明在哪里添加依赖项等。需要编辑哪些文件?
我很困惑我需要做什么才能在代码中使用 @Ref 属性。
编辑/更新
如何在没有 Maven 的情况下使用 Jersey 超链接。我已经获取了 jar 文件 jersey-server-linking-1.9-SNAPSHOT.jar 但我不知道它取决于什么。有人可以给我一份我需要让它工作的罐子清单吗?
I am confused by the Jersey Documentation Chapter 6
http://jersey.java.net/nonav/documentation/latest/linking.html
The configuration section (6.5) doesn't say where to add the dependency etc. What file(s) need to be edited?
I am confused what I need to do all together in order to use the @Ref attribute in my code.
EDIT/UPDATE
How do I use Jersey Hyperlinking without Maven. I've grabbed the jar file jersey-server-linking-1.9-SNAPSHOT.jar but I don't know what it depends on. Can some one give me a list of jars I need to get this working?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该依赖项似乎是一个 Maven 依赖项,因此您将其放入典型的 Maven 配置文件中,我对 Maven 不太熟悉。这实际上是为了确保 Jersey 链接模块库包含在您的应用程序中。
该部分中的其余代码示例涉及您需要对 web.xml 进行的修改。
The dependency appears to be a maven dependency, So you'd put it in the typical maven configuration files, I'm not all that familiar with maven. This is really to make sure the Jersey linking module libraries are included in your application.
The rest of the code samples in that section refer to modifications you need to make to web.xml.
来自 Jersey Hyperlinking POM,
这是运行时所需的依赖项列表:
From the Jersey Hyperlinking POM,
here's the list of dependencies you need at runtime: