`

Spring整合RESTEasy两种思路

阅读更多

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注解,为什么要这样呢?

分享到:
评论

相关推荐

    Spring整合RestEasy示例工程源码

    **Spring整合RestEasy示例工程源码解析** 在现代Web开发中,Spring框架因其强大的功能和灵活性而被广泛采用,而RESTful API设计已经成为服务端与客户端交互的标准方式。RestEasy是一个优秀的Java RESTful Web ...

    resteasy-spring-poc-swagger:resteasy-spring-poc-swagger

    "resteasy-spring-poc-swagger:resteasy-spring-poc-swagger" 这个标题提到了两个关键组件,Resteasy 和 Swagger,以及它们在 Spring 框架中的集成。Resteasy 是一个针对 Java JAX-RS(Java API for RESTful Web ...

    JAX-RS+spring

    JAX-RS(Java API for RESTful Web Services)和Spring框架是两种在Java开发中广泛使用的技术,它们分别处理不同的层面。JAX-RS是Java平台上的标准,用于构建RESTful Web服务,而Spring则是一个全面的后端框架,提供...

    云门户rest开发

    3. 配置`web.xml`文件,设置`context-param`来指定Spring配置文件的位置,然后添加两个监听器,一个是`ResteasyBootstrap`,另一个是`SpringContextLoaderListener`,用于启动RESTEasy和Spring的上下文。最后,配置...

    spring-demo:这是spring java框架的实践演示

    9. **单元测试与集成测试**:Spring框架提供了JUnit和Mockito等工具的整合,便于编写单元测试和集成测试,确保代码质量。 通过这个"spring-demo"项目,你可以学习如何设置Spring环境,编写Bean定义,实现AOP,创建...

    xmljava系统源码-Polaris:一款微服务MicroService快速构建平台,支持resteasy,springmvc和自定义ser

    2. **RESTEasy集成**:RESTEasy是JAX-RS(Java API for RESTful Web Services)的实现,Polaris通过集成RESTEasy,使得开发者能够轻松创建RESTful API,提供JSON或XML格式的数据交换,支持HTTP方法如GET、POST、PUT...

    Java Webservices

    在Java中,Web服务主要通过SOAP(简单对象访问协议)或REST(表述性状态转移)来实现,这两种方式都允许应用程序通过HTTP协议交换数据。 1. **SOAP Web服务**: SOAP是XML格式的协议,它定义了消息结构、编码规则...

    REST相关jar包

    REST(Representational State Transfer,表述性状态转移)是一种软件架构风格,用于设计网络应用程序,尤其在Web服务领域中广泛使用。RESTful接口基于HTTP协议,它通过GET、POST、PUT、DELETE等方法来操作资源,...

    JavaWEB项目开发精粹

    5. **Chapter 12 (ch12)**: 可能是关于Ajax(Asynchronous JavaScript and XML)和jQuery的使用,这两种技术可以实现页面的部分刷新,提高用户体验。 6. **Chapter 06 (ch06)**: 可能讨论了Java EE(企业版)中的...

    caelum-java-web-fj21.zip_java web_web

    "caelum-java-web-fj21.zip"这个压缩包很可能包含了一个关于Java Web开发的教程或课程资料,主要针对“Java_web”和“web”这两个标签的相关内容。 首先,Java Web开发的基础是Java Servlet和JavaServer Pages ...

    SOA_and_REST_Knowdlege_Base

    **SOA(面向服务架构)和REST(表述性状态转移)是两种在IT行业中广泛使用的软件设计模式,尤其是在构建分布式系统和服务导向的架构时。本文将深入探讨这两种技术及其核心概念,以及它们在Java开发中的应用。** **1...

    SpringMVC精品资源--JAX-RS &amp; SpringMVC supported gradle bui.zip

    这涉及到两个关键的技术栈:SpringMVC,一个用于构建Web应用程序的Java框架,以及JAX-RS,Java API for RESTful Web Services的缩写,是Java标准的RESTful服务开发接口。 SpringMVC是Spring框架的一部分,主要用于...

    dubbox介绍

    - **Kryo和FST**:Dubbox集成了Kryo和FST这两个高性能序列化库,为Dubbo默认的RPC协议提供了新的序列化选项,显著提升了RPC的性能。 - **Jackson JSON序列化**:Dubbox还支持基于Jackson的JSON序列化,为RPC协议增加...

    Airline_Tickets:使用API​​ Restful使用Java中的后端与Web应用程序和桌面应用程序连接的Web服务

    我们可以使用Spring Boot的全局异常处理和Log4j等工具来实现这两点。 6. **测试和部署**: 对API进行单元测试和集成测试以确保其正确性。Java有许多测试框架,如JUnit和Mockito。部署方面,可以选择Tomcat、Jetty等...

Global site tag (gtag.js) - Google Analytics