Spring整合JMS----基于ActiveMQ的实现

蜀川居 2016-12-27

1.1JMS简介

JMS的全称是JavaMessageService,即Java消息服务。它主要用于在生产者和消费者之间进行消息传递,生产者负责产生消息,而消费者负责接收消息。把它应用到实际的业务需求中的话我们可以在特定的时候利用生产者生成一消息,并进行发送,对应的消费者在接收到对应的消息后去完成对应的业务逻辑。对于消息的传递有两种类型,一种是点对点的,即一个生产者和一个消费者一一对应;另一种是发布/订阅模式,即一个生产者产生消息并进行发送后,可以由多个消费者进行接收。

1.2Spring整合JMS

对JMS做了一个简要介绍之后,接下来就讲一下Spring整合JMS的具体过程。JMS只是一个标准,真正在使用它的时候我们需要有它的具体实现,这里我们就使用Apache的activeMQ来作为它的实现。导入jar包:

Xml代码收藏代码

<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-core</artifactId>

<version>5.7.0</version>

</dependency>

</dependencies>

1.2.1activeMQ准备

既然是使用的apache的activeMQ作为JMS的实现,那么首先我们应该到apache官网上下载activeMQ(http://activemq.apache.org/download.html),进行解压后运行其bin目录下面的activemq.bat文件启动activeMQ。

1.2.2配置ConnectionFactory

ConnectionFactory是用于产生到JMS服务器的链接的,Spring为我们提供了多个ConnectionFactory,有SingleConnectionFactory和CachingConnectionFactory。SingleConnectionFactory对于建立JMS服务器链接的请求会一直返回同一个链接,并且会忽略Connection的close方法调用。CachingConnectionFactory继承了SingleConnectionFactory,所以它拥有SingleConnectionFactory的所有功能,同时它还新增了缓存功能,它可以缓存Session、MessageProducer和MessageConsumer。这里我们使用SingleConnectionFactory来作为示例。

Xml代码收藏代码

<beanid="connectionFactory"class="org.springframework.jms.connection.SingleConnectionFactory"/>

Spring提供的ConnectionFactory只是Spring用于管理ConnectionFactory的,真正产生到JMS服务器链接的ConnectionFactory还得是由JMS服务厂商提供,并且需要把它注入到Spring提供的ConnectionFactory中。我们这里使用的是ActiveMQ实现的JMS,所以在我们这里真正的可以产生Connection的就应该是由ActiveMQ提供的ConnectionFactory。所以定义一个ConnectionFactory的完整代码应该如下所示:

Xml代码收藏代码

<!--真正可以产生Connection的ConnectionFactory,由对应的JMS服务厂商提供-->

<beanid="targetConnectionFactory"class="org.apache.activemq.ActiveMQConnectionFactory">

<propertyname="brokerURL"value="tcp://localhost:61616"/>

</bean>

<!--Spring用于管理真正的ConnectionFactory的ConnectionFactory-->

<beanid="connectionFactory"class="org.springframework.jms.connection.SingleConnectionFactory">

<!--目标ConnectionFactory对应真实的可以产生JMSConnection的ConnectionFactory-->

<propertyname="targetConnectionFactory"ref="targetConnectionFactory"/>

</bean>

ActiveMQ为我们提供了一个PooledConnectionFactory,通过往里面注入一个ActiveMQConnectionFactory可以用来将Connection、Session和MessageProducer池化,这样可以大大的减少我们的资源消耗。当使用PooledConnectionFactory时,我们在定义一个ConnectionFactory时应该是如下定义:

Xml代码收藏代码

<!--真正可以产生Connection的ConnectionFactory,由对应的JMS服务厂商提供-->

<beanid="targetConnectionFactory"class="org.apache.activemq.ActiveMQConnectionFactory">

<propertyname="brokerURL"value="tcp://localhost:61616"/>

</bean>

<beanid="pooledConnectionFactory"class="org.apache.activemq.pool.PooledConnectionFactory">

<propertyname="connectionFactory"ref="targetConnectionFactory"/>

<propertyname="maxConnections"value="10"/>

</bean>

<beanid="connectionFactory"class="org.springframework.jms.connection.SingleConnectionFactory">

<propertyname="targetConnectionFactory"ref="pooledConnectionFactory"/>

</bean>

1.2.3配置生产者

配置好ConnectionFactory之后我们就需要配置生产者。生产者负责产生消息并发送到JMS服务器,这通常对应的是我们的一个业务逻辑服务实现类。但是我们的服务实现类是怎么进行消息的发送的呢?这通常是利用Spring为我们提供的JmsTemplate类来实现的,所以配置生产者其实最核心的就是配置进行消息发送的JmsTemplate。对于消息发送者而言,它在发送消息的时候要知道自己该往哪里发,为此,我们在定义JmsTemplate的时候需要往里面注入一个Spring提供的ConnectionFactory对象。

Xml代码收藏代码

<!--Spring提供的JMS工具类,它可以进行消息发送、接收等-->

<beanid="jmsTemplate"class="org.springframework.jms.core.JmsTemplate">

<!--这个connectionFactory对应的是我们定义的Spring提供的那个ConnectionFactory对象-->

<propertyname="connectionFactory"ref="connectionFactory"/>

</bean>

在真正利用JmsTemplate进行消息发送的时候,我们需要知道消息发送的目的地,即destination。在Jms中有一个用来表示目的地的Destination接口,它里面没有任何方法定义,只是用来做一个标识而已。当我们在使用JmsTemplate进行消息发送时没有指定destination的时候将使用默认的Destination。默认Destination可以通过在定义jmsTemplatebean对象时通过属性defaultDestination或defaultDestinationName来进行注入,defaultDestinationName对应的就是一个普通字符串。在ActiveMQ中实现了两种类型的Destination,一个是点对点的ActiveMQQueue,另一个就是支持订阅/发布模式的ActiveMQTopic。在定义这两种类型的Destination时我们都可以通过一个name属性来进行构造,如:

Xml代码收藏代码

<!--这个是队列目的地,点对点的-->

<beanid="queueDestination"class="org.apache.activemq.command.ActiveMQQueue">

<constructor-arg>

<value>queue</value>

</constructor-arg>

</bean>

<!--这个是主题目的地,一对多的-->

<beanid="topicDestination"class="org.apache.activemq.command.ActiveMQTopic">

<constructor-argvalue="topic"/>

</bean>

定义了一个ProducerService,向Destination发送纯文本消息:

Java代码收藏代码

importjavax.jms.Destination;

publicinterfaceProducerService{

publicvoidsendMessage(Destinationdestination,finalStringmessage);

}

Java代码收藏代码

importjavax.jms.Destination;

importjavax.jms.JMSException;

importjavax.jms.Message;

importjavax.jms.Session;

importorg.springframework.beans.factory.annotation.Autowired;

importorg.springframework.jms.core.JmsTemplate;

importorg.springframework.jms.core.MessageCreator;

importorg.springframework.stereotype.Service;

importcn.tzz.jms.activemq.spring.ProducerService;

@Service

publicclassProducerServiceImplimplementsProducerService{

@Autowired

privateJmsTemplatejmsTemplate;

publicvoidsendMessage(Destinationdestination,finalStringmessage){

System.out.println("生产者发消息:"+message);

jmsTemplate.send(destination,newMessageCreator(){

publicMessagecreateMessage(Sessionsession)throwsJMSException{

returnsession.createTextMessage(message);

}

});

}

}

我们可以看到在sendMessage方法体里面我们是通过jmsTemplate来发送消息到对应的Destination的。到此,我们生成一个简单的文本消息并把它发送到指定目的地Destination的生产者就配置好了。

1.2.4配置消费者

生产者往指定目的地Destination发送消息后,接下来就是消费者对指定目的地的消息进行消费了。那么消费者是如何知道有生产者发送消息到指定目的地Destination了呢?这是通过Spring为我们封装的消息监听容器MessageListenerContainer实现的,它负责接收信息,并把接收到的信息分发给真正的MessageListener进行处理。每个消费者对应每个目的地都需要有对应的MessageListenerContainer。对于消息监听容器而言,除了要知道监听哪个目的地之外,还需要知道到哪里去监听,也就是说它还需要知道去监听哪个JMS服务器,这是通过在配置MessageConnectionFactory的时候往里面注入一个ConnectionFactory来实现的。所以我们在配置一个MessageListenerContainer的时候有三个属性必须指定,一个是表示从哪里监听的ConnectionFactory;一个是表示监听什么的Destination;一个是接收到消息以后进行消息处理的MessageListener。Spring一共为我们提供了两种类型的MessageListenerContainer,SimpleMessageListenerContainer和DefaultMessageListenerContainer。

SimpleMessageListenerContainer会在一开始的时候就创建一个会话session和消费者Consumer,并且会使用标准的JMSMessageConsumer.setMessageListener()方法注册监听器让JMS提供者调用监听器的回调函数。它不会动态的适应运行时需要和参与外部的事务管理。兼容性方面,它非常接近于独立的JMS规范,但一般不兼容JavaEE的JMS限制。

大多数情况下我们还是使用的DefaultMessageListenerContainer,跟SimpleMessageListenerContainer相比,DefaultMessageListenerContainer会动态的适应运行时需要,并且能够参与外部的事务管理。它很好的平衡了对JMS提供者要求低、先进功能如事务参与和兼容JavaEE环境。

定义处理消息的MessageListener

要定义处理消息的MessageListener我们只需要实现JMS规范中的MessageListener接口就可以了。MessageListener接口中只有一个方法onMessage方法,当接收到消息的时候会自动调用该方法。

Java代码收藏代码

importjavax.jms.JMSException;

importjavax.jms.Message;

importjavax.jms.MessageListener;

importjavax.jms.TextMessage;

publicclassConsumerMessageListenerimplementsMessageListener{

publicvoidonMessage(Messagemessage){

//这里我们知道生产者发送的就是一个纯文本消息,所以这里可以直接进行强制转换

TextMessagetextMsg=(TextMessage)message;

try{

System.out.println("\t\t接收到消息:"+textMsg.getText());

}catch(JMSExceptione){

e.printStackTrace();

}

}

}

有了MessageListener之后我们就可以在Spring的配置文件中配置一个消息监听容器了。

Xml代码收藏代码

<!--消息监听器-->

<beanid="consumerMessageListener"class="cn.tzz.jms.activemq.spring.ConsumerMessageListener"/>

<!--消息监听容器-->

<beanid="jmsContainer"class="org.springframework.jms.listener.DefaultMessageListenerContainer">

<propertyname="connectionFactory"ref="connectionFactory"/>

<propertyname="destination"ref="queueDestination"/>

<propertyname="messageListener"ref="consumerMessageListener"/>

</bean>

我们可以看到我们定义了一个名叫queue的ActiveMQQueue目的地,我们的监听器就是监听了发送到这个目的地的消息。

至此我们的生成者和消费者都配置完成了,这也就意味着我们的整合已经完成了。这个时候完整的Spring的配置文件应该是这样的:

Xml代码收藏代码

<context:annotation-config/>

<context:component-scanbase-package="packagecn.tzz.jms.activemq.spring"/>

<!--ActiveMQ-->

<!--真正可以产生Connection的ConnectionFactory,由对应的JMS服务厂商提供-->

<beanid="targetConnectionFactory"class="org.apache.activemq.ActiveMQConnectionFactory">

<propertyname="brokerURL"value="tcp://localhost:61616"/>

</bean>

<beanid="pooledConnectionFactory"class="org.apache.activemq.pool.PooledConnectionFactory">

<propertyname="connectionFactory"ref="targetConnectionFactory"/>

<propertyname="maxConnections"value="10"/>

</bean>

<beanid="connectionFactory"class="org.springframework.jms.connection.SingleConnectionFactory">

<propertyname="targetConnectionFactory"ref="pooledConnectionFactory"/>

</bean>

<!--Spring提供的JMS工具类,它可以进行消息发送、接收等-->

<beanid="jmsTemplate"class="org.springframework.jms.core.JmsTemplate">

<!--这个connectionFactory对应的是我们定义的Spring提供的那个ConnectionFactory对象-->

<propertyname="connectionFactory"ref="connectionFactory"/>

</bean>

<!--消息队列的目的地,点对点的-->

<beanid="queueDestination"class="org.apache.activemq.command.ActiveMQQueue">

<constructor-arg>

<value>queue</value>

</constructor-arg>

</bean>

<!--这个是主题目的地,一对多的-->

<beanid="topicDestination"class="org.apache.activemq.command.ActiveMQTopic">

<constructor-argvalue="topic"/>

</bean>

<!--消息监听器-->

<beanid="consumerMessageListener"class="cn.tzz.jms.activemq.spring.ConsumerMessageListener"/>

<!--消息监听容器-->

<beanid="jmsContainer"class="org.springframework.jms.listener.DefaultMessageListenerContainer">

<propertyname="connectionFactory"ref="connectionFactory"/>

<propertyname="destination"ref="queueDestination"/>

<propertyname="messageListener"ref="consumerMessageListener"/>

</bean>

测试:

Java代码收藏代码

importjavax.jms.Destination;

importorg.junit.Test;

importorg.junit.runner.RunWith;

importorg.springframework.beans.factory.annotation.Autowired;

importorg.springframework.beans.factory.annotation.Qualifier;

importorg.springframework.test.context.ContextConfiguration;

importorg.springframework.test.context.junit4.SpringJUnit4ClassRunner;

importcn.tzz.jms.activemq.spring.ProducerService;

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration("/applicationContext.xml")

publicclassProducerConsumerTest{

@Autowired

privateProducerServiceproducerService;

@Autowired

@Qualifier("queueDestination")

privateDestinationdestination;

@Test

publicvoidtestSend(){

for(inti=0;i<5;i++){

producerService.sendMessage(destination,"消息--"+i);

}

}

}

上面的测试代码中我们利用生产者发送了5个消息,消费者应该可以接收到这两个消息。运行测试代码后控制台输出如下:

生产者发消息:消息--0

接收到消息:消息--0

生产者发消息:消息--1

接收到消息:消息--1

生产者发消息:消息--2

接收到消息:消息--2

生产者发消息:消息--3

接收到消息:消息--3

生产者发消息:消息--4

接收到消息:消息--4

相关推荐

xinglun / 0评论 2020-06-14