Spring整合RESTEasy两种思路

标签: spring resteasy | 发表时间:2016-12-28 12:12 | 作者:quainter
出处:http://www.iteye.com

RESTEasy 项目是 JAX-RS 的一个实现 
官网地址 
官方文档 

本文的目的 是:更好的处理Spring Bean和RESTEasy Resource之间的关系 

思路有两种:

  1. RESTEasy自己管理Resource的生命周期,在Resource生成时将需要的Spring bean手动注入进来
  2. 依靠Spring容器来管理Resource,将Spring的Bean当做Resource发布出来

下面比较详细的解释下:

(一)RESTEasy自己管理Resource的生命周期

具体思路是Resource层代码不使用Spring管理,在Resource的构造方法中手动注入需要的Spring Bean(比如Service方法等),上代码

@Path("book")
public class BookResource{

    private BookService bookService;

    public BookResource(){
        BookService bookSerivce = (BookService)YOUR_SPRING_CONTEXT.getBean("bookService");
        this.bookService = bookService;
    }

    @Path("{bookId:[0-9]*}")
    @Get
    @Produces({MediaType.APPLICATION_JSON,MediaType.APPLICATION_XML})
    @Consumes({MediaType.APPLICATION_JSON,MediaType.APPLICATION_XML})
    public Book getBookById(@PathParam("bookId")final Integer bookId){
        final Book book = this.bookService.getBookById(bookId);
        return book;
    }

}
 

RESTEasy是在接收到请求的时候通过反射利用构造方法生成Resource实例的,所以这里我们重写了Resource的构造方法。在初始化的时候手动去SpringContext中取到需要的bean,将其注入进来,这样就实现了在Resource中调用Service方法。

(二)依靠Spring容器来管理Resource

先看看下面是 chapter45.spring integration中web.xml中需要的配置:

<web-app>
    <listener>
        <listener-class>
            org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap
        </listener-class>
    </listener>

    <!-- ** INSERT YOUR LISTENERS HERE!!!! -->

    <!-- resteasy自定义的spring容器 -->
    <listener>
        <listener-class>
            org.jboss.resteasy.plugins.spring.SpringContextLoaderListener
        </listener-class>
    </listener>

    <servlet>
        <servlet-name>Resteasy</servlet-name>
        <servlet-class>
            org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
        </servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>Resteasy</servlet-name>
        <url-pattern>/Resteasy/*</url-pattern>  
    </servlet-mapping>

</web-app>
 

可以看出上面配置了resteasy自定义的SpringContextLoaderListener。

这样做的局限是:由于SpringContext只能存在一个,所以下面的spring容器不可以和上面的RESTEasy自定义spring容器共存。

如果你的项目没有自定义Spring容器,而使用的是原始的Spring容器的话,考虑直接用上面代码中的 org.jboss.resteasy.plugins.spring.SpringContextLoaderListener替换掉你原来的 org.springframework.web.context.ContextLoaderListener来解决,就不用往下看了。

<!-- 当前项目自定义的spring容器 -->
<listener>
    <listener-class>
        custom.SpringContextLoaderListener
    </listener-class>
</listener>
 

那么解决思路就很明确了。

将RESTEasy的spring实现整合到项目自定义的spring实现中

通过分析 resteasy-spring源码包发现,RESTEasy的自定义SpringContextLoader代码入口在 org.jboss.resteasy.plugins.spring.SpringContextLoader.java中,此类代码如下:

public class SpringContextLoader extends ContextLoader
{
   private SpringContextLoaderSupport springContextLoaderSupport = new SpringContextLoaderSupport();

   protected void customizeContext(ServletContext servletContext, ConfigurableWebApplicationContext configurableWebApplicationContext)
   {
      super.customizeContext(servletContext, configurableWebApplicationContext);
      this.springContextLoaderSupport.customizeContext(servletContext,configurableWebApplicationContext);
   }
}
 

到这里就简单了,我们在自定义的CustomSpringContextLoader中加入上面的代码,OK

public class CustomSpringContextLoader extends ContextLoader
{

   <!--  YOUR CODE!!! -->

   private SpringContextLoaderSupport springContextLoaderSupport = new SpringContextLoaderSupport();

   protected void customizeContext(ServletContext servletContext, ConfigurableWebApplicationContext configurableWebApplicationContext)
   {
      super.customizeContext(servletContext, configurableWebApplicationContext);
      this.springContextLoaderSupport.customizeContext(servletContext,configurableWebApplicationContext);
   }
}
 

接下来要做的就是通过注解或者配置的方式将BookResource加载到Spring容器。

@Component
@Scope("request")
@Path("book")
public class BookResource{

    private BookService bookService;

    public BookResource(){
        BookService bookSerivce = (BookService)YOUR_SPRING_CONTEXT.getBean("bookService");
        this.bookService = bookService;
    }

    @Path("{bookId:[0-9]*}")
    @Get
    @Produces({MediaType.APPLICATION_JSON,MediaType.APPLICATION_XML})
    @Consumes({MediaType.APPLICATION_JSON,MediaType.APPLICATION_XML})
    public Book getBookById(@PathParam("bookId")final Integer bookId){
        final Book book = this.bookService.getBookById(bookId);
        return book;
    }

}
 

我这里通过 @Component来加载的。 
是不是看到了 @Scope注解,为什么要这样呢?



已有 0 人发表留言,猛击->> 这里<<-参与讨论


ITeye推荐



相关 [spring resteasy] 推荐:

Spring整合RESTEasy两种思路

- - 开源软件 - ITeye博客
RESTEasy 项目是 JAX-RS 的一个实现 . 是:更好的处理Spring Bean和RESTEasy Resource之间的关系 . RESTEasy自己管理Resource的生命周期,在Resource生成时将需要的Spring bean手动注入进来. 依靠Spring容器来管理Resource,将Spring的Bean当做Resource发布出来.

Spring详解

- - CSDN博客架构设计推荐文章
Spring是一个开源的控制反转(Inversion of Control ,IoC)和面向切面(AOP)的容器框架.它的主要目的是简化企业开发.. PersonDaoBean 是在应用内部创建及维护的. 所谓控制反转就是应用本身不负责依赖对象的创建及维护,依赖对象的创建及维护是由外部容器负责的.

Spring定时

- - 行业应用 - ITeye博客
spring的定时任务配置分为三个步骤:. . . . . .

简单Spring+hessian

- - Web前端 - ITeye博客
简单的Spring+hessian. dist\modules里面的 spring-webmvc.jar . lib\caucho 里面的hessian-3.1.3.jar. 里面有个接口interface:. 建立一个model层:(实现Serializable接口). 在WEB-INF下面创建一个remoting-servlet.xml:.

Spring MVC 和 Struts2

- - CSDN博客架构设计推荐文章
Web层面的框架学习了三个Struts1和2,SpringMVC,那他们之间肯定存在一个优劣和适用的环境,Struts1和2的异同点我已经做过对比《 Struts1和Struts2》,这篇将对比下Struts2和SpringMVC的异同,下面数据基本来源于网络,本人是搜集整理所得,供大家参考. 一个项目使用什么样的技术,决定的因素很多,我所能想到的有:对系统的性能、开发的效率、团队学习的成本、业务场景等,下面尽量从这几个方面入手,来分析比较下他们之间存在的优劣.

Spring AOP详解

- - Java - 编程语言 - ITeye博客
        最近项目中遇到了以下几点需求,仔细思考之后,觉得采用AOP来解决. 一方面是为了以更加灵活的方式来解决问题,另一方面是借此机会深入学习Spring AOP相关的内容. 例如,以下需求不用AOP肯定也能解决,至于是否牵强附会,仁者见仁智者见智. 1.对部分函数的调用进行日志记录,用于观察特定问题在运行过程中的函数调用情况.

spring roo 入门

- - 企业架构 - ITeye博客
Spring官网下载STS(如果没有STS). 创建Spring Roo基础项目. 根 据ROO的提示输入jpa setup再按ctrl+space,很遗憾这个快捷键已经被输入法切换占用,不能借助提示输入命令,但我们可以打开ROO命令向导,这里我们输入jpa 可以查到这条命令的用法,根据提示增加provider和database选项来完成命令.

Spring Rmi配置

- - 企业架构 - ITeye博客
现在远程调用一般用RPC,webservice或者Rmi,而目前用的比较多的是webservice和Rmi. webservice和rmi的最主要的区别,rmi的客户端和服务端都必须是java,webservice没有这个限制,webservice是在http协议上传递xml文本文件. 与语言和平台无关,rmi是在tcp协议上传递可序列化的java对象,只能用在java虚拟机上,绑定语言.

Spring+memcached整合

- - 行业应用 - ITeye博客
1)  下载memcached服务端memcached-1.2.6-win32-bin.zip,地址:http:. 2)  下载java版客户端 java_memcached-release_2.6.1.zip. 3)  解压缩memcached-1.2.6-win32-bin.zip到指定目录,例如:D:\memcached-1.2.6-win32 ,.

大话 Spring Cloud

- - IT瘾-dev
研究了一段时间spring boot了准备向spirng cloud进发,公司架构和项目也全面拥抱了Spring Cloud. 在使用了一段时间后发现Spring Cloud从技术架构上降低了对大型系统构建的要求,使我们以非常低的成本(技术或者硬件)搭建一套高效、分布式、容错的平台,但Spring Cloud也不是没有缺点,小型独立的项目不适合使用.