文件名称:Netty-Resteasy-Spring
文件大小:29KB
文件格式:ZIP
更新时间:2019-03-10 11:41:26
Resteasy
Resteasy + Spring + Netty sample Inject resteasy provider / controllers as spring bean Authentication Run at Main.java Test http://localhost:8082/resteasy/hello/world 教程 jax-rs规范用法: http://www.vogella.com/tutorials/REST/article.html resteasy 教程: http://code.freedomho.com/9541.html 名次解释 RESTEasy:RESTEasy是JBoss的一个开源项目,提供各种框架帮助你构建RESTful Web Services和RESTful Java应用程序。它是JAX-RS规范的一个完整实现并通过JCP认证。 JAX-RS: 是一套用java实现REST服务的规范。(全名Java API for RESTful Web Services) JAX-RS标注的内容: @Path,标注资源类或方法的相对路径 @GET,@PUT,@POST,@DELETE,标注方法是用的HTTP请求的类型 @Produces,标注返回的MIME媒体类型 @Consumes,标注可接受请求的MIME媒体类型 @PathParam,@QueryParam,@HeaderParam,@CookieParam,@MatrixParam,@FormParam,分别标注方法的参数来自于HTTP请求的不同位置,例如@PathParam来自于URL的路径,@QueryParam来自于URL的查询参数,@HeaderParam来自于HTTP请求的头信息,@CookieParam来自于HTTP请求的Cookie。 REST: 含状态传输(英文:Representational State Transfer,简称REST),是一种软件架构风格。具体看 http://zh.wikipedia.org/wiki/REST
【文件预览】:
Netty-Resteasy-Spring-master
----LICENSE(11KB)
----netty-resteasy-spring-sample()
--------pom.xml(7KB)
--------.settings()
--------src()
--------.project(557B)
--------.classpath(1KB)
--------dependency-reduced-pom.xml(3KB)
--------README.md(784B)
----README.md(869B)