首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Jersey 2.x 服务器端应用支持的容器 原

Jersey 2.x 服务器端应用支持的容器 原

作者头像
HoneyMoose
发布2019-01-30 10:54:58
5190
发布2019-01-30 10:54:58
举报
文章被收录于专栏:CWIKIUSCWIKIUSCWIKIUS

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

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

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>

https://www.cwiki.us/display/JERSEYZH/Common+Jersey+Use+Cases

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018/11/07 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
容器服务
腾讯云容器服务(Tencent Kubernetes Engine, TKE)基于原生 kubernetes 提供以容器为核心的、高度可扩展的高性能容器管理服务,覆盖 Serverless、边缘计算、分布式云等多种业务部署场景,业内首创单个集群兼容多种计算节点的容器资源管理模式。同时产品作为云原生 Finops 领先布道者,主导开源项目Crane,全面助力客户实现资源优化、成本控制。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档