博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Jersey 2.x Glassfish 中基于 Servlet 的应用
阅读量:6038 次
发布时间:2019-06-20

本文共 813 字,大约阅读时间需要 2 分钟。

hot3.png

如果你使用的是 Glassfish 作为你应用服务器,你不需要在你的引用中包含引用任何东西,所有你需要的都已经包含进去了。

你只需要定义 JAX-RS API 以便于你能够对你的应用进行编辑,使用 (provided)依赖。

1

2

3

4

5

6

<dependency>

    <groupId>javax.ws.rs</groupId>

    <artifactId>javax.ws.rs-api</artifactId>

    <version>2.1</version>

    <scope>provided</scope>

</dependency>

如果你需要使用 Jersey 的一些特定特性,你需要基于你的 Jersey 目录进行添加。

1

2

3

4

5

6

7

8

9

10

11

12

13

<dependency>

<groupId>org.glassfish.jersey.containers</groupId>

<artifactId>jersey-container-servlet</artifactId>

<version>2.27</version>

<scope>provided</scope>

</dependency>

<!-- if you are using Jersey client specific features without the server side -->

<dependency>

<groupId>org.glassfish.jersey.core</groupId>

<artifactId>jersey-client</artifactId>

<version>2.27</version>

<scope>provided</scope>

</dependency>

转载于:https://my.oschina.net/u/2344080/blog/2872712

你可能感兴趣的文章
循序渐进Python3(三) -- 2 -- 内置函数
查看>>
C# CHECKEDLISTBOX控件用法总结(怎样得到多选的值)
查看>>
Python 语言中经常有疑惑的地方
查看>>
使用python+hadoop-streaming编写hadoop处理程序
查看>>
盘点20款表现出众的HTML5游戏
查看>>
菜鸟问题
查看>>
hdu 4421 BitMagic
查看>>
Listview_简单使用_(Virtual)
查看>>
POJ-1195-Mobile phones
查看>>
HDU-1068-GirlsandBoys(最大独立集,二分图匹配)
查看>>
Codeforces Round #564 (Div. 2) A. Nauuo and Votes
查看>>
代替eval执行字符串表达式
查看>>
数据库备份与还原
查看>>
第五周作业
查看>>
echarts
查看>>
srand rand
查看>>
[HDU]2161Primes
查看>>
《零基础入门学习Python》【第一版】视频课后答案第001讲
查看>>
Debian下install JDK
查看>>
SQL Server 中WITH (NOLOCK)浅析
查看>>