spring整合JMS实现同步收发消息(基于ActiveMQ的实现)
本文介绍了spring整合jms实现同步收发消息(基于activemq的实现),分享给大家,具体如下:
1. 安装activemq
注意:jdk版本需要1.7及以上才行
到apache官方网站下载最新的activemq的安装包,并解压到本地目录下,下载链接如下:,解压后的目录结构如下:
bin目录结构如下:
如果我们是32位的机器,就双击win32目录下的activemq.bat,如果是64位机器,则双击win64目录下的activemq.bat,运行结果如下:
启动成功!成功之后在浏览器输入地址,可以看到activemq的管理页面,用户名和密码默认都是admin,如下:
2. 新建一个maven工程,并配置pom文件如下:
<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelversion>4.0.0</modelversion> <groupid>com.chhliu.myself</groupid> <artifactid>activemq_start</artifactid> <version>0.0.1-snapshot</version> <packaging>jar</packaging> <name>activemq_start</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceencoding>utf-8</project.build.sourceencoding> <spring-version>3.2.5.release</spring-version> </properties> <dependencies> <dependency> <groupid>junit</groupid> <artifactid>junit</artifactid> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupid>org.springframework</groupid> <artifactid>spring-context</artifactid> <version>${spring-version}</version> </dependency> <dependency> <groupid>org.springframework</groupid> <artifactid>spring-jms</artifactid> <version>${spring-version}</version> </dependency> <dependency> <groupid>org.springframework</groupid> <artifactid>spring-test</artifactid> <version>${spring-version}</version> </dependency> <dependency> <groupid>javax.annotation</groupid> <artifactid>jsr250-api</artifactid> <version>1.0</version> </dependency> <dependency> <groupid>org.apache.activemq</groupid> <artifactid>activemq-all</artifactid> <version>5.13.3</version> </dependency> <dependency> <groupid>org.apache.commons</groupid> <artifactid>commons-pool2</artifactid> <version>2.0</version> </dependency> </dependencies> </project>
3. 配置连接工厂(connectionfactory)
spring给我们提供了如下的连接工厂:
其中singleconnectionfactory保证每次返回的都是同一个连接,cachingconnectionfactory继承了singleconnectionfactory,在保证同一连接的同时,增加了缓存的功能,可以缓存session以及生产者,消费者。当然,jms提供的连接工厂只是用来实现管理的,并不是真正连接mq的,真正的连接工厂需要具体的mq厂商提供,下面我们以activemq为例来说明,配置如下:
<!-- 真正可以产生connection的connectionfactory,由对应的 jms服务厂商提供 --> <bean id="targetconnectionfactory" class="org.apache.activemq.activemqconnectionfactory"> <property name="brokerurl" value="tcp://localhost:61616" /> </bean> <bean id="connectionfactory" class="org.springframework.jms.connection.singleconnectionfactory"> <property name="targetconnectionfactory" ref="targetconnectionfactory" /> </bean>
为了减少我们连接的资源消耗,activemq为我们提供了一个连接工厂管理池--pooledconnectionfactory,通过连接工厂池,可以将connection,session等都放在池里面,用的时候直接返回池里面的内容,无需临时建立连接,节约开销。配置如下:
<!-- 真正可以产生connection的connectionfactory,由对应的 jms服务厂商提供 --> <bean id="targetconnectionfactory" class="org.apache.activemq.activemqconnectionfactory"> <property name="brokerurl" value="tcp://localhost:61616" /> </bean> <!-- 通过往pooledconnectionfactory注入一个activemqconnectionfactory可以用来将connection,session和messageproducer池化这样可以大大减少我们的资源消耗, --> <bean id="pooledconnectionfactory" class="org.apache.activemq.pool.pooledconnectionfactory"> <property name="connectionfactory" ref="targetconnectionfactory" /> <property name="maxconnections" value="10" /> </bean> <bean id="connectionfactory" class="org.springframework.jms.connection.singleconnectionfactory"> <property name="targetconnectionfactory" ref="pooledconnectionfactory" /> </bean>
4. 配置jmstemplate
配置好连接工厂之后,就需要配置jms的jmstemplate,jmstemplate的作用和jdbctemplate类似,我们发送和接收消息,都是通过jmstemplate来实现的,配置如下:
<!-- 配置生产者:配置好connectionfactory之后我们就需要配置生产者。生产者负责产生消息并发送到jms服务器,这通常对应的是我们的一个业务逻辑服务实现类。 但是我们的服务实现类是怎么进行消息的发送的呢?这通常是利用spring为我们提供的jmstemplate类来实现的, 所以配置生产者其实最核心的就是配置进行消息发送的jmstemplate。对于消息发送者而言,它在发送消息的时候要知道自己该往哪里发, 为此,我们在定义jmstemplate的时候需要往里面注入一个spring提供的connectionfactory对象 --> <!-- spring提供的jms工具类,它可以进行消息发送、接收等 --> <bean id="jmstemplate" class="org.springframework.jms.core.jmstemplate"> <!-- 这个connectionfactory对应的是我们定义的spring提供的那个connectionfactory对象 --> <property name="connectionfactory" ref="connectionfactory" /> </bean>
5. 生产者实现
配置完这些之后,我们就可以写代码实现生产者和消费者了,生产者主要用来生产消息,并向目的队列中推送消息,接口定义如下:
public interface producerservice { void sendmessage(destination destination, final string message); }
实现类代码如下:
@service("producerserviceimpl") public class producerserviceimpl implements producerservice { /** * 注入jmstemplate */ @resource(name="jmstemplate") private jmstemplate jtemplate; /** * attention: * details:发送消息 * @author chhliu * 创建时间:2016-7-28 下午2:33:14 * @param destination * @param message */ @override public void sendmessage(destination receivedestination, final string message) { system.out.println("================生产者创建了一条消息=============="); jtemplate.send(receivedestination, new messagecreator() { @override public message createmessage(session session) throws jmsexception { return session.createtextmessage("hello acticemq:"+message); } }); } }
6. 消费者实现
假设生产者已经创建了一条消息,并推送到了对应的队列中,消费者需要从这个队列中取出消息,并同时回复一条报文,自己已经收到了这条消息,为了测试回复报文的功能,我们下面会将回复报文放到另一个队列中,此例使用同步接收消息的方式,而不是异步监听的方式实现,接口定义如下:
public interface consumerservice { string receivemessage(destination destination, destination replydestination); }
实现类代码如下:
@service("consumerserviceimpl") public class consumerserviceimpl implements consumerservice { /** * 注入jmstemplate */ @resource(name="jmstemplate") private jmstemplate jtemplate; /** * attention: * details:接收消息,同时回复消息 * @author chhliu * 创建时间:2016-7-28 下午2:39:45 * @param destination * @return */ @override public string receivemessage(destination destination, destination replydestination) { /** * 接收消息队列中的消息 */ message message = jtemplate.receive(destination); try { /** * 此处为了更好的容错性,可以使用instanceof来判断下消息类型 */ if(message instanceof textmessage){ string receivemessage = ((textmessage) message).gettext(); system.out.println("收到生产者的消息:"+receivemessage); /** * 收到消息之后,将回复报文放到回复队列里面去 */ jtemplate.send(replydestination, new messagecreator() { @override public message createmessage(session session) throws jmsexception { return session.createtextmessage("消费者已经收到生产者的消息了,这是一条确认报文!"); } }); return receivemessage; } } catch (jmsexception e) { e.printstacktrace(); } return ""; } }
生产者和消费者实现之后,我们要做的就是配置队列了,下面给出项目完整的配置文件:
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p" xmlns:cache="http://www.springframework.org/schema/cache" xmlns:jpa="http://www.springframework.org/schema/data/jpa" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-3.2.xsd http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd"> <!-- 扫描注解包 --> <context:annotation-config /> <context:component-scan base-package="com.chhliu.myself.activemq.start"></context:component-scan> <bean id="targetconnectionfactory" class="org.apache.activemq.activemqconnectionfactory"> <property name="brokerurl" value="tcp://localhost:61616" /> </bean> <bean id="pooledconnectionfactory" class="org.apache.activemq.pool.pooledconnectionfactory"> <property name="connectionfactory" ref="targetconnectionfactory" /> <property name="maxconnections" value="10" /> </bean> <bean id="connectionfactory" class="org.springframework.jms.connection.singleconnectionfactory"> <property name="targetconnectionfactory" ref="pooledconnectionfactory" /> </bean> <bean id="jmstemplate" class="org.springframework.jms.core.jmstemplate"> <property name="connectionfactory" ref="connectionfactory" /> </bean> <!-- 在真正利用jmstemplate进行消息发送的时候,我们需要知道消息发送的目的地,即destination。 在jms中有一个用来表示目的地的destination接口,它里面没有任何方法定义,只是用来做一个标识而已。当我们在使用jmstemplate进行消息发送时没有指定destination的时候将使用默认的destination。 默认destination可以通过在定义jmstemplate bean对象时通过属性defaultdestination或defaultdestinationname来进行注入, defaultdestinationname对应的就是一个普通字符串 --> <!--这个是队列目的地,点对点的 --> <bean id="queuedestination" class="org.apache.activemq.command.activemqqueue"> <constructor-arg> <value>ntf_mock_input</value> </constructor-arg> </bean> <!--这个是回复队列,点对点的 --> <bean id="responsequeue" class="org.apache.activemq.command.activemqqueue"> <constructor-arg> <value>ntf_mock_output</value> </constructor-arg> </bean> </beans>
到这里,所有的代码和配置文件就都整好了,下面就是进行测试,测试代码如下:
生产者测试代码:
package com.chhliu.myself.activemq.start.sync; import javax.annotation.resource; import javax.jms.destination; import org.junit.test; import org.junit.runner.runwith; import org.springframework.test.context.contextconfiguration; import org.springframework.test.context.junit4.springjunit4classrunner; @runwith(springjunit4classrunner.class) @contextconfiguration(locations = { "classpath:applicationcontext.xml" }) public class syncproduceractivemqtest { @resource(name="producerserviceimpl") private producerservice pservice; @resource(name="queuedestination") private destination receivequeue; @test public void producertest(){ pservice.sendmessage(receivequeue, "my name is chhliu!"); } }
消费者测试代码:
package com.chhliu.myself.activemq.start.sync; import javax.annotation.resource; import javax.jms.destination; import org.junit.test; import org.junit.runner.runwith; import org.springframework.test.context.contextconfiguration; import org.springframework.test.context.junit4.springjunit4classrunner; @runwith(springjunit4classrunner.class) @contextconfiguration(locations = { "classpath:applicationcontext.xml" }) public class syncconsumeractivemqtest { @resource(name="consumerserviceimpl") private consumerservice cservice; @resource(name="queuedestination") private destination receivequeue; @resource(name="responsequeue") private destination replyqueue; @test public void producertest(){ string result = cservice.receivemessage(receivequeue, replyqueue); system.out.println(result); } }
测试结果如下:
生产者测试结果: ================生产者创建了一条消息============== 消费者测试结果: 收到生产者的消息:hello acticemq:my name is chhliu! hello acticemq:my name is chhliu!
再来看下activemq的管理页面的结果:
从管理页面中可以看到,生产者生产了消息,并且入队列了,同时消费者也消费了消息,并将回复消息放到了回复队列中,测试成功。
但是这种同步取消息的方式有个缺点,每次只会取一条消息消费,取完之后就会一直阻塞,下面来测试一下:首先让生产者再生产5条消息,然后运行消费者程序,发现会只消费一条消息,除非我们在消费者程序里面加while(true),一直轮询队列,这种实现方式不仅耗内存,效率也不是很高,后面,我们会对这种方式进行改进,使用异步监听模式,测试效果如下:
生产者创建了5条消息:
=======生产者创建了一条消息========
=======生产者创建了一条消息========
=======生产者创建了一条消息========
=======生产者创建了一条消息========
======生产者创建了一条消息=========
activemq管理页面如下:
消费者消费一条消息:
收到生产者的消息:hello acticemq:my name is chhliu!
hello acticemq:my name is chhliu!
消费者消费消息后,activemq管理页面如下:
从上面的对比中,我们可以看出来,同步模式下,消费者消费消息时,是逐条消费,每次只消费一条消息。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。