Spring整合activeMQ方法
1.导入坐标
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-all</artifactId>
<version>5.14.0</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
<version>4.3.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>4.3.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.3.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.3.3.RELEASE</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
2.web.xml中配置核心监听器
<!-- spring配置文件位置 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<!-- spring核心监听器 -->
<listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
3.分别建立生产者和消费者的applicationContext.xml文件,主xml文件中引入
4.在生产者和消费者的applicationContext文件里面都配置如下
4.1ActiveMQ工厂配置
<!-- ActiveMQ 连接工厂 -->
<!-- 真正可以产生Connection的ConnectionFactory,由对应的 JMS服务厂商提供-->
<!-- 如果连接网络:tcp://ip:61616;未连接网络:tcp://localhost:61616 以及用户名,密码-->
<amq:connectionFactory id="ConnectionFactoryamq"
brokerURL="tcp://localhost:61616" userName="admin" password="admin"/>
4.2spring 整合 ActiveMQ
<!-- Spring Caching连接工厂 -->
<!-- Spring用于管理真正的ConnectionFactory的ConnectionFactory -->
<bean id="ConnectionFactory" class="org.springframework.jms.connection.CachingConnectionFactory">
<!-- 目标ConnectionFactory对应真实的可以产生JMS Connection的ConnectionFactory -->
<property name="targetConnectionFactory" ref="ConnectionFactoryamq"></property>
<!-- 同上,同理 -->
<!-- <constructor-arg ref="amqConnectionFactory" /> -->
<!-- Session缓存数量 -->
<property name="sessionCacheSize" value="100" />
</bean>
4.2.1activeMQ配置生产者
<!-- 配置生产者模板 -->
<!-- 定义JmsTemplate的Queue类型 -->
<bean id="jmsQueueTemplate" class="org.springframework.jms.core.JmsTemplate">
<!-- 这个connectionFactory对应的是我们定义的Spring提供的那个ConnectionFactory对象 -->
<constructor-arg ref="ConnectionFactory" /> <引入spring整合的工厂>
<!-- 非pub/sub模型(发布/订阅),即队列模式 -->
<property name="pubSubDomain" value="false" />
</bean>
<!-- 定义JmsTemplate的Topic类型 -->
<bean id="jmsTopicTemplate" class="org.springframework.jms.core.JmsTemplate">
<!-- 这个connectionFactory对应的是我们定义的Spring提供的那个ConnectionFactory对象 -->
<constructor-arg ref="ConnectionFactory" />
<!-- pub/sub模型(发布/订阅) -->
<property name="pubSubDomain" value="true" />
</bean>
4.2.2activeMQ配置消费者
<!-- 配置消费者监听 -->
<jms:listener-container destination-type="queue" container-type="default"
connection-factory="ConnectionFactory" acknowledge="auto">
<!-- 默认注册bean名称,应该是类名首字母小写 -->
<jms:listener destination="queue_name" ref="activeConsumersQueue"/>
<jms:listener destination="queue_name" ref="activeConsumersQueue1"/>
</jms:listener-container>
注:destination属性内容参数为具体监听发布消息名字
ref属性为消费者实体类的类名首字母小写,如果在实体类注解上配置了具体name,ref属性就为具体的name属性
<!-- 配置消费者监听 -->
<jms:listener-container destination-type="topic" container-type="default"
connection-factory="ConnectionFactory" acknowledge="auto">
<!-- 默认注册bean名称,应该是类名首字母小写 -->
<jms:listener destination="topic_name" ref="activeConsumersTopic"/>
<jms:listener destination="topic_name" ref="activeConsumersTopic2"/>
</jms:listener-container>
5.生产者实体类配置
@Service
public class ActiveMQTopic {
@Autowired
@Qualifier("jmsTopicTemplate") //具体实现queue或者topic由applicationContext.xml中配置的生产者模板决定
private JmsTemplate jmsTemplate;
public void topicmessage(String name,final String message) {
jmsTemplate.sendAndReceive(name, new MessageCreator() {
public Message createMessage(Session arg0) throws JMSException {
return arg0.createTextMessage(message);
}
});
}
}
6.消费者实体类配置
6.1消费者类实现MessageListener接口
public class ActiveConsumersQueue implements MessageListener{
public void onMessage(Message message) {
TextMessage text=(TextMessage) message;
try {
System.out.println("ActiveConsumersQueue"+text.getText());
} catch (JMSException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}