InfoQ

InfoQ

新闻

我的书签

登录注册 以永久保存书签。

该内容已经被标记书签!

标记书签错误,请重试!

Spring AMQP 1.0 GA发布了

作者 Bienvenido David III 译者 张龙 发布于 2012年2月5日

领域
语言 & 开发
主题
AMQP ,
Spring框架 ,
消息传送 ,
Web服务 ,
Java ,
依赖注入 ,
SpringSource ,
SOA ,
.NET ,
设计模式 ,
语言 ,
VMWare ,
企业架构 ,
编程 ,
模式 ,
面向对象设计 ,
设计 ,
架构

近日,SpringSource(VMware下的一个部门)发布Spring AMQP 1.0 GA(1.0.0.RELEASE)。Spring AMQP项目将Spring核心概念应用到了基于AMQP的消息解决方案的开发上,并且提供了Java与.NET两个版本。要想了解Spring AMQP与AMQP,请阅读文章“Introduction to SpringSource's Advanced Message Queuing Protocol Support”。

Spring AMQP提供了org.springframework.amqp.core.AmqpTemplate来发送与接收消息。AMQP模板实现支持发送与接收POJOs而非javax.jms.Message实例。他们还提供了一种方式来自定义用于编排对象的MessageConverter。Spring与JMS用户会发现JmsTemplate与新的AmqpTemplate之间的相似性。

下面的代码片段介绍了如何联合使用Spring AMQP与RabbitMQ处理同步消息。RabbitMQ是VMware的产品,并且是官方Spring AMQP示例中所用的默认AMQP实现。

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

	<rabbit:connection-factory id="connectionFactory"/>
	<rabbit:template id="amqpTemplate" connection-factory="connectionFactory"/>
	<rabbit:admin connection-factory="connectionFactory"/>
	<rabbit:queue name="helloworld.queue"/>
</beans>

上述Spring配置xml引用了ConnectionFactory,创建了一个RabbitTemplate来访问消息broker,创建了一个RabbitAdmin来管理交换、查询与绑定,最后创建了队列。下面的Java代码片段用于发送与接收消息。

Producer.java

import org.springframework.amqp.core.AmqpTemplate;
...

AmqpTemplate amqpTemplate = context.getBean(AmqpTemplate.class);
amqpTemplate.convertAndSend("helloworld.queue", "Hello World");

Consumer.java

import org.springframework.amqp.core.AmqpTemplate;
...

AmqpTemplate amqpTemplate = context.getBean(AmqpTemplate.class);
System.out.println(amqpTemplate.receiveAndConvert("helloworld.queue"));

要想上手,请下载Spring AMQP for Java或是Spring AMQP for .NET。Spring AMQP for Java artifacts也位于SpringSource Maven仓库与Maven Central中。其依赖是spring-amqp、spring-core与spring-context。如果消息broker使用的是RabbitMQ,那么还要引入spring-rabbit。你还可以试一下位于GitHub上的Spring AMQP示例。这些示例都是基于Maven的项目,需要用到RabbitMQ与Erlang。请阅读与示例代码一同发布的readme.md文件以了解完整的构建命令。

对于Cloud Foundry用户来说,VMware还发布了RabbitMQ on Cloud Foundry免费的公开Beta版。你可以使用AMQP连接RabbitMQ on Cloud Foundry,通过这些示例可以帮助你快速上手。对于Spring Integration用户来说,版本2.1 M1提供了AMQP支持。

除了VMware的RabbitMQ外,其他基于AMQP面向消息的中间件还有Apache QpidRed Hat Enterprise MRGStormMQ(托管)。iMatrix的OpenAMQ已经不再支持了,因此也没有成为一个选择。

要想了解关于Spring AMQP的更多信息,请查看Spring AMQP Reference for JavaSpring AMQP Reference for .NET参考页面。

查看英文原文:Spring AMQP 1.0 GA

译者 张龙 热衷于编程,乐于分享,对新技术有强烈的探索欲,对Java轻量级框架有一定研究。

不会和臭名昭著的 org.springframework.jms.core.JmsTemplate 一样吧 发表人 Yang Yang 发表于
  1. 返回顶部

    不会和臭名昭著的 org.springframework.jms.core.JmsTemplate 一样吧

    发表人 Yang Yang

    不会和臭名昭著的 org.springframework.jms.core.JmsTemplate 一样吧。 开着开着就漏消息。