2018-4-6
OK,我得承认,是因为Axis2没走通,所以改了用Jersey,因为之前一次用过觉得还挺容易用。
具体Jersey是什么,目前完全不了解,接下来1天时间来试试看。
—— 怎么着都不成
一、下文中需要的资源地址汇总
- Apache Maven
- Apache网站 http://maven.apache.org/
- Maven下载地址: http://maven.apache.org/download.cgi
- Jersey
- Jersey(JAX-RS 2.1 / Jersey 2.26+)下载:https://jersey.github.io/download.html
- Jersey JAX-RS 2.1 RI bundle bundle contains the JAX-RS 2.1 API jar, all the core Jersey module jars as well as all the required 3rd-party dependencies.
- Jersey 2.26 Examples bundle provides convenient access to the Jersey 2 examples for off-line browsing.
- Jersey 2.26 API Documentation在线DOC:https://jersey.github.io/apidocs/latest/jersey/index.html
- Jersey(JAX-RS 2.1 / Jersey 2.26+)下载:https://jersey.github.io/download.html
二、Jersey是什么?了解一下
原文地址:http://dyygusi.iteye.com/blog/2148029?utm_source=tuicool
下图把Axis2划到SOAP协议的阵营里了,我花了好几天研究用Axis2实现REST WS…… (冷风)
另外,Jersey1.X的版本是sun公司提供的独立的jar包,在2.X版本中,已经将jersey放在glassfish下。所以……开源了??那项目能不能用Jersey又是一个谜……不过反正我只是想搭个local Service端测试用,应该不影响。
来自度娘百科:
Jersey RESTful 框架是开源的RESTful框架, 实现了JAX-RS (JSR 311 & JSR 339) 规范。
它扩展了JAX-RS 参考实现, 提供了更多的特性和工具, 可以进一步地简化 RESTful service 和 client 开发。
尽管相对年轻,它已经是一个产品级的 RESTful service 和 client 框架。与Struts类似,它同样可以和hibernate,spring框架整合。
由于Struts2+hibernate+spring整合在市场的占有率太高,所以很少一部分人去关注Jersey。
所以网上有关于Jersey的介绍很少。但是它确实是一个非常不错的框架。对于请求式服务,对于GET,DELETE请求,你甚至只需要给出一个URI即可完成操作。
—— 所以……我是不是应该去学Struts2?
Jersey系列文章:
三、先找一篇适合初学者的Jersey教程
原文地址:Jersey框架初体验
1.7版本的Jersey
看了不到5行,就看见这样一句话:
本篇主要是Jersey体验,你将在不做任何编码的情况下,体验Jersey框架的神气魅力!本文还假定你在eclipse里安装了Maven插件!OK,乖乖去学Maven……
四、先找一篇适合初学者的Maven教程
原文地址:https://www.cnblogs.com/dlsunf/p/8726971.html