RESTEasy + Spring集成示例

注意
关于集成Spring的官方RESTEasy指南,没有太多评论,文档需要改进,因为对于其他人来说,它太“ 抽象 ”了(至少对我而言:))。

在这里,我们向您展示了将Spring bean注入JBoss RESTEasy的两种一般方法,下面的解决方案也应适用于大多数Web框架和JAX-RS实现。

  1. 使用WebApplicationContextUtils + ServletContext。
  2. 创建一个类来实现ApplicationContextAware intrefaces ,建议使用单例模式。

在本教程中,我们将RESTEasy 2.2.1.GASpring 3.0.5.RELEASE集成在一起

1.项目依赖

依赖关系不多,只需在您的Maven pom.xml文件中声明RESTEasy和Spring核心。


		
		  JBoss repository
		  https://repository.jboss.org/nexus/content/groups/public-jboss/
		
	

	
	
		
		
			org.jboss.resteasy
			resteasy-jaxrs
			2.2.1.GA
		

		
		
			org.springframework
			spring-core
			3.0.5.RELEASE
		

		
			org.springframework
			spring-context
			3.0.5.RELEASE
		

		
			org.springframework
			spring-web
			3.0.5.RELEASE
		

		
		
			javax.servlet
			servlet-api
			2.4
		

	

2.Spring Bean

一个简单的Spring bean,名为“ customerBo ”,稍后您将通过Spring将其注入RESTEasy服务。

package com.mkyong.customer;

public interface CustomerBo{
	
	String getMsg();
	
}
package com.mkyong.customer.impl;

import com.mkyong.customer.CustomerBo;

public class CustomerBoImpl implements CustomerBo {

	public String getMsg() {

		return "RESTEasy + Spring example";
		
	}

}

文件:applicationContext.xml



	
        

3.1 WebApplicationContextUtils + ServletContext

第一个解决方案是使用JAX-RS @Context获取ServletContext ,并使用WebApplicationContextUtils获取Spring应用程序上下文,通过此Spring应用程序上下文,您可以访问Spring容器并从中获取bean。

package com.mkyong.rest;

import javax.servlet.ServletContext;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.Response;
import org.springframework.context.ApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
import com.mkyong.customer.CustomerBo;

@Path("/customer")
public class PrintService {

	CustomerBo customerBo;

	@GET
	@Path("/print")
	public Response printMessage(@Context ServletContext servletContext) {

		//get Spring application context
		ApplicationContext ctx = 
                     WebApplicationContextUtils.getWebApplicationContext(servletContext);
		customerBo= ctx.getBean("customerBo",CustomerBo.class);
		
		String result = customerBo.getMsg();

		return Response.status(200).entity(result).build();

	}

}

3.2实施ApplicationContextAware

第二种解决方案是创建一个实现Spring ApplicationContextAware的类,并使其成为单例,以防止从其他类实例化。

package com.mkyong.context;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;

public class SpringApplicationContext implements ApplicationContextAware {

	private static ApplicationContext appContext;

	// Private constructor prevents instantiation from other classes
        private SpringApplicationContext() {}
    
	@Override
	public void setApplicationContext(ApplicationContext applicationContext)
			throws BeansException {
		appContext = applicationContext;

	}

	public static Object getBean(String beanName) {
		return appContext.getBean(beanName);
	}

}

请记住注册此bean,否则,Spring容器将不会意识到此类。

文件:applicationContext.xml



	
	
	
        

在REST服务中,可以使用新的单例类“ SpringApplicationContext ”从Spring容器中获取bean。

package com.mkyong.rest;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.core.Response;
import com.mkyong.context.SpringApplicationContext;
import com.mkyong.customer.CustomerBo;

@Path("/customer")
public class PrintService {

	CustomerBo customerBo;

	@GET
	@Path("/print")
	public Response printMessage() {

		customerBo = (CustomerBo) SpringApplicationContext.getBean("customerBo");
		
		String result = customerBo.getMsg();

		return Response.status(200).entity(result).build();

	}

}

4.将RESTEasy与Spring集成

要将两者集成到Web应用程序中,请在web.xml中添加Spring“ ContextLoaderListener ”。

文件:web.xml


	Restful Web Application
	
	
		resteasy.resources
		com.mkyong.rest.PrintService
	

	
		
			org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap
                
	

	
		
                        org.springframework.web.context.ContextLoaderListener
                
	

	
		resteasy-servlet
		
			org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
                
	

	
		resteasy-servlet
		/*
	

5.演示

解决方案1和2都将产生以下相同的输出:

RESTEasy + Spring集成示例_第1张图片 RESTEasy + Spring集成示例_第2张图片

注意
同样,如果您了解此RESTEasy Spring指南或有更好的解决方案,请与我分享。

下载源代码

下载它– RESTEasyt-Spring-Integration-Example.zip (9 KB)

参考文献

  1. 从遗留代码访问Spring Bean
  2. 将Spring与其他框架集成的一般方法
  3. 总比没有好RESTEasy + Spring示例
  4. ApplicationContextAware JavaDoc
  5. Java中的Wiki Singleton模式
  6. 获取Spring Application上下文

翻译自: https://mkyong.com/webservices/jax-rs/resteasy-spring-integration-example/

你可能感兴趣的:(RESTEasy + Spring集成示例)