`

JAX-RS之resteasy跟spring整合

阅读更多
  其实,在JAX-RS标准下,jboss的resteasy跟spring结合的话,无非是如何去取得
spring中的bean而已.两个方法,例子如下

1 比如有个接口和实现类
public interface CustomerBo{
 
	String getMsg();
 
}


  实现类
  
public class CustomerBoImpl implements CustomerBo {
 
	public String getMsg() {
 
		return "RESTEasy + Spring example";
 
	}



applicationContext.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd ">

<bean id="customerBo" class="com.mkyong.customer.impl.CustomerBoImpl">
        </bean>

</beans>


之后用WebApplicationContextUtils + ServletContext
引用

@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();

}


 
第2种方法,自己写类,实现ApplicationContextAware ,当然这个类要单例
 
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);
	}
 
}

  applicationContext.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd ">

<bean class="com.mkyong.context.SpringApplicationContext"></bean>

<bean id="customerBo" class="com.mkyong.customer.impl.CustomerBoImpl">
        </bean>

</beans>

使用:
 
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();
 
	}
 
}


    web.xml整合
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Restful Web Application</display-name>

<context-param>
<param-name>resteasy.resources</param-name>
<param-value>com.mkyong.rest.PrintService</param-value>
</context-param>

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

<listener>
<listener-class>
                        org.springframework.web.context.ContextLoaderListener
                </listener-class>
</listener>

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

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

</web-app>
5
4
分享到:
评论
2 楼 ruijin5566 2012-07-26  
学习了,在项目里用了
1 楼 grassking 2012-01-04  
resteasy中能通过@Autowrited注解来获取bean吗?

相关推荐

    JAX-RS+spring

    4. **拦截器整合**: 结合Spring的AOP和JAX-RS的拦截器,实现跨切面的功能,如全局异常处理、统一的日志记录等。 5. **微服务架构**: 在微服务架构中,JAX-RS常被用于创建服务边界,而Spring则负责服务的内部治理,...

    resteasy-spring-boot:RESTEasy Spring Boot Starter

    另外,此RESTEasy Spring Boot启动程序将按预期方式与Spring集成,这意味着每个也是Spring Bean的JAX-RS REST资源都将被自动自动扫描,集成和可用。 产品特点 为Spring Boot应用程序启用RESTEasy 作为Spring bean...

    Resteasy JAX-RS 3.0.6-all.zip最新官方zip包

    在压缩包中,"resteasy-jaxrs-3.0.6.Final"是核心库文件,它包含了Resteasy框架的所有必要组件,包括用于处理HTTP请求和响应的核心类、解析和序列化JSON或XML数据的提供者、以及对其他技术(如JPA、JAXB)的集成模块...

    resteasy-jaxrs-2.3.6.Final-all

    Resteasy-jaxrs-2.3.6.Final-all是一个重要的软件组件,它在Java世界中扮演着关键的角色,特别是对于开发基于RESTful服务的应用程序。这个组件是JBoss组织对JAX-RS(Java API for RESTful Web Services,JSR 311)...

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

    【标题】"SpringMVC精品资源--JAX-RS & SpringMVC supported gradle bui.zip" 提供的是一份关于使用Gradle构建支持JAX-RS和SpringMVC的项目资源。这涉及到两个关键的技术栈:SpringMVC,一个用于构建Web应用程序的...

    Netty-Resteasy-Spring

    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规范用法: ...

    netty-resteasy-spring:Netty 、 RESTEasy 、 Spring 的集成演示

    resteasy-spring-netty Resteasy + Spring + Netty sample Inject resteasy provider / controllers as spring bean Authentication ===================== Run at Main.java Test 教程 jax-rs规范用法: resteasy ...

    resteasy-spring-boot

    任何想要具有REST端点并且更喜欢RESTEasy作为JAX-RS实现的常规Spring Boot应用程序都可以使用此Spring Boot启动器。 另外,此RESTEasy Spring Boot启动程序将按预期方式与Spring集成,这意味着每个也是Spring Bean...

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

    "POC (Proof of Concept) 网址 Resteasy Jaxrs 1.0 Spring" 描述指出这是一个概念验证项目,主要目标是展示 Resteasy JAX-RS 1.0 版本如何与 Spring 框架协同工作。POC 项目通常用于演示某个技术或解决方案的功能和...

    resteasy-jaxrs-2.3.2官方jar包

    在"resteasy-jaxrs-2.3.2官方jar包"中,我们主要关注以下几个核心知识点: 1. **JAX-RS**:JAX-RS是Java EE的一部分,定义了创建RESTful服务的API。通过注解,开发者可以轻松地将HTTP操作映射到Java方法上,比如`@...

    Jax-RS-Performance-Comparison:Jax-RS实现和嵌入式容器的性能比较

    Jax-RS-性能比较Jax-RS实现与嵌入式容器的性能比较 写了一篇文章: 。 他列出了8种最佳的轻量级Java RESTful框架。 就我个人而言,我将jax-rs实现和微框架用于将应用程序部署为微服务,并且这些微服务可以部署在...

    resteasy2.2.1官方jar包

    2. **注解驱动**:Resteasy支持多种JAX-RS注解,如`@Path`、`@PathParam`、`@QueryParam`、`@HeaderParam`、`@CookieParam`和`@FormParam`,用于处理HTTP请求的不同部分,如路径参数、查询参数、头信息和表单数据。...

    RestEasy使用说明

    RESTEasy实现了JAX-RS规范,并通过了JCP(Java Community Process)的认证,确保了其标准兼容性和可靠性。由于RESTEasy隶属于JBoss,因此与JBoss应用服务器的集成非常紧密,但这并不限制它的使用范围,RESTEasy同样...

    RestEasy简介

    RestEasy作为JAX-RS(Java API for RESTful Web Services)规范的实现,为开发人员提供了一套完整的工具集,用于在Java应用中构建RESTful服务。 **JAX-RS规范** JAX-RS是Java标准API,用于简化RESTful服务的开发。...

    servlet配置restful所需jar包

    3. **RESTEasy**: 是JBoss的一个项目,也是JAX-RS的实现之一,提供了许多高级特性,如拦截器、转换器和GZIP压缩。 4. **Quarkus**: 这是Red Hat的Kubernetes原生Java框架,提供了快速启动和低内存占用的特性,也...

    三步轻松实现java restful web services

    RESTEasy是一个流行的JAX-RS(Java API for RESTful Web Services)实现,它允许开发者用注解来轻松地声明服务接口。例如,我们可以使用`@Path`注解来定义服务路径,`@GET`、`@POST`等注解来指定HTTP方法,以及`@...

    使用RESTEasy构建WebService简介

    RESTEasy是一个开源的JAX-RS实现,它允许开发者以简单的方式构建RESTful Web服务。JAX-RS是Java API for RESTful Web Services的缩写,是一个Java编程语言的API,用于开发Web服务和基于Web的应用程序。RESTEasy不仅...

    building web services with java

    JAX-RS的实现如Jersey、RESTEasy等,为开发人员提供了丰富的功能和灵活性。 除了JAX-WS和JAX-RS,Spring框架也提供了强大的支持来构建Web服务。Spring Web Services项目专注于创建基于文档驱动的Web服务,它利用XSD...

    使用 RestEasy 和 Apache Tomcat 构建 RESTful Web 服务

    `resteasy-jaxrs-all-beta1`可能包含了RestEasy的完整组件集,包括客户端库和各种模块,这对于快速搭建RESTful服务非常有帮助。 总的来说,使用RestEasy和Apache Tomcat构建RESTful Web服务是一个高效且灵活的方法...

Global site tag (gtag.js) - Google Analytics