Java Jersey 声明性超链接配置

发布于 2024-12-27 15:11:06 字数 396 浏览 2 评论 0原文

我对泽西岛文档第 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 技术交流群。

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

发布评论

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

评论(2

九歌凝 2025-01-03 15:11:06

该依赖项似乎是一个 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.

江南烟雨〆相思醉 2025-01-03 15:11:06

来自 Jersey Hyperlinking POM

这是运行时所需的依赖项列表:

 <dependencies>
        <dependency>
            <groupId>javax.el</groupId>
            <artifactId>el-api</artifactId>
            <version>2.2</version>
        </dependency>
        <dependency>
            <groupId>org.glassfish.web</groupId>
            <artifactId>el-impl</artifactId>
            <version>2.2</version>
        </dependency>
    </dependencies>

From the Jersey Hyperlinking POM,

here's the list of dependencies you need at runtime:

 <dependencies>
        <dependency>
            <groupId>javax.el</groupId>
            <artifactId>el-api</artifactId>
            <version>2.2</version>
        </dependency>
        <dependency>
            <groupId>org.glassfish.web</groupId>
            <artifactId>el-impl</artifactId>
            <version>2.2</version>
        </dependency>
    </dependencies>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文