博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Jersey 2.x 服务器端应用支持的容器
阅读量:6083 次
发布时间:2019-06-20

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

基于 JAX-RS Servlet-based 部署的一部分标准,能运行在任何支持 Servlet 2.5 和更高标准的的容器上。Jersey 提供支持程序化部署在下面的容器中:Grizzly 2 (HTTP 和 Servlet), JDK Http server,Simple Http server 和 Jetty Http server

本章节仅仅提供了需要 Maven 提供的依赖,有关更多的细节,请参考  页面中的内容。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<dependency>
    
<groupId>org.glassfish.jersey.containers</groupId>
    
<artifactId>jersey-container-grizzly2-http</artifactId>
    
<version>2.27</version>
</dependency>
 
<dependency>
    
<groupId>org.glassfish.jersey.containers</groupId>
    
<artifactId>jersey-container-grizzly2-servlet</artifactId>
    
<version>2.27</version>
</dependency>
 
<dependency>
    
<groupId>org.glassfish.jersey.containers</groupId>
    
<artifactId>jersey-container-jdk-http</artifactId>
    
<version>2.27</version>
</dependency>
 
<dependency>
    
<groupId>org.glassfish.jersey.containers</groupId>
    
<artifactId>jersey-container-simple-http</artifactId>
    
<version>2.27</version>
</dependency>
 
<dependency>
    
<groupId>org.glassfish.jersey.containers</groupId>
    
<artifactId>jersey-container-jetty-http</artifactId>
    
<version>2.27</version>
</dependency>
 
<dependency>
    
<groupId>org.glassfish.jersey.containers</groupId>
    
<artifactId>jersey-container-jetty-servlet</artifactId>
    
<version>2.27</version>
</dependency>

转载地址:http://dwuwa.baihongyu.com/

你可能感兴趣的文章
Dapper丶DapperExtention,以及AbpDapper之间的关系,
查看>>
搞IT的同学们,你们在哪个等级__那些年发过的帖子
查看>>
且谈语音搜索
查看>>
MySQL数据库导入导出常用命令
查看>>
低版本Samba无法挂载
查看>>
Telegraf+Influxdb+Grafana构建监控平台
查看>>
使用excel 展现数据库内容
查看>>
C#方法拓展
查看>>
MySql.Data.dll的版本
查看>>
Linux系统磁盘管理
查看>>
hdu 2191 (多重背包+二进制优化)
查看>>
home.php
查看>>
neo4j---删除关系和节点
查看>>
redis分布式锁redisson
查看>>
什么样的企业可以称之为初创企业?
查看>>
Python爬虫之BeautifulSoup
查看>>
《HTML 5与CSS 3权威指南(第3版·下册)》——第20章 使用选择器在页面中插入内容...
查看>>
如何判断自己适不适合做程序员?这几个特点了解一下
查看>>
newinstance()和new有什么区别
查看>>
android下载封装类
查看>>