欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring整合ActiveMQ---超详细教程

程序员文章站 2022-09-24 19:33:50
Spring整合ActiveMQ环境配置Spring整合ActiveMQ之队列生产者Spring整合ActiveMQ之队列消费者三级目录前面三节讲了ActiveMQ的安装、测试。JMS介绍以及四大组成元素,还有ActiveMQ的可靠性(持久化、事务、签收),还有Broker等等。但是光学会还不够,我们还要把ActiveMQ应用到我们已有的框架中,如Spring和SpringBoot等等。这一节主要学习如何在Spring中使用ActiveMQ。环境配置首先创建一个spring项目,在pom文件中导入...

前面三节讲了ActiveMQ的安装、测试。JMS介绍以及四大组成元素,还有ActiveMQ的可靠性(持久化、事务、签收),还有Broker等等。

但是光学会还不够,我们还要把ActiveMQ应用到我们已有的框架中,如Spring和SpringBoot等等。

这一节主要学习如何在Spring中使用ActiveMQ。

环境配置

首先创建一个spring项目,在pom文件中导入我们需要的jar包

<!-- activemq所需要的jar包 -->
		<dependency>
			<groupId>org.apache.activemq</groupId>
			<artifactId>activemq-all</artifactId>
			<version>5.15.9</version>
		</dependency>
		<dependency>
			<groupId>org.apache.xbean</groupId>
			<artifactId>xbean-spring</artifactId>
			<version>4.17</version>
		</dependency>

		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
			<version>2.11.3</version>
		</dependency>


		<!-- https://mvnrepository.com/artifact/org.springframework/spring-jms -->
		<!-- activeMQ对JMS的支持,整合Spring和ActiveMQ -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-jms</artifactId>
			<version>5.2.10.RELEASE</version>
		</dependency>

		<dependency>
			<groupId>org.apache.activemq</groupId>
			<artifactId>activemq-pool</artifactId>
			<version>5.15.9</version>
		</dependency>

然后导入Spring必须的jar包。

Spring整合ActiveMQ之队列生产者

  1. 配置ApplicationContext.xml文件
<!-- 自动扫描 -->
	<context:component-scan base-package="com.zxg.activemq"></context:component-scan>
	
	<!-- 配置生产者 -->
	<bean id="jmsFactory" class="org.apache.activemq.pool.PooledConnectionFactory" destroy-method="stop">
		<property name="connectionFactory">
			<!-- 真正可以生产Connection的ConnectionFactory,对应的JMS服务厂商提供 -->
			<bean class="org.apache.activemq.ActiveMQConnectionFactory">
				<!--  tcp://自己的服务器地址:端口-->
				<property name="brokerURL" value="tcp://129.*.*.*:61616"></property>
			</bean>
		</property>
		<property name="maxConnections" value="100"></property>
	</bean>
	
	<!-- 这个是队列目的地,点对点的 -->
	<bean id="destinationQueue" class="org.apache.activemq.command.ActiveMQQueue">
		<constructor-arg index="0" value="spring-active-queue"></constructor-arg>
	</bean>
	
	<!-- Spring提供的JMS工具类,他可以进行消息发送,接收等 -->
	<bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
		<property name="connectionFactory" ref="jmsFactory"></property>
 		<property name="defaultDestination" ref="destinationQueue"></property>
 		<property name="messageConverter" >
 			<bean class="org.springframework.jms.support.converter.SimpleMessageConverter"></bean>
 		</property>
	</bean>
  1. 配置Service层
public interface SpringMQ_Produce {
	void send(String messageStr);
}
@Service("springMQ_Produce")
public class SpringMQ_ProduceImpl implements SpringMQ_Produce{

	@Autowired
	private JmsTemplate jmsTemplate;
	
	public void send(String messageStr) {
		@SuppressWarnings("resource")
		ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");

		SpringMQ_ProduceImpl produce = (SpringMQ_ProduceImpl) ctx.getBean("springMQ_Produce");
		
		produce.jmsTemplate.send((session)->{
			TextMessage textMessage = session.createTextMessage(messageStr);
			return textMessage;
		});
		System.out.println("send success");
	}
}
  1. 测试
public class TestProduceService {
	
	private SpringMQ_Produce springMQ_Produce;
	ApplicationContext ctx;
	{
		ctx = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
		springMQ_Produce = (SpringMQ_Produce) ctx.getBean("springMQ_Produce");
	}
	
	@Test
	public void test() {
		springMQ_Produce.send("Spring 整合ActiveMQ!!!");
	}

}
  • 运行结果
    Spring整合ActiveMQ---超详细教程然后查看MQ服务器控制台
    Spring整合ActiveMQ---超详细教程Spring整合ActiveMQ---超详细教程发现消息已经发布成功了。

Spring整合ActiveMQ之队列消费者

为了方便,就直接在Service层实现测试

@Service
public class SpringMQ_Consumer {
	
	@Autowired
	private JmsTemplate jmsTemplate;
	
	public static void main(String[] args) {
		@SuppressWarnings("resource")
		ApplicationContext ctx = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
		
		SpringMQ_Consumer consumer = (SpringMQ_Consumer) ctx.getBean("springMQ_Consumer");
		String re = (String) consumer.jmsTemplate.receiveAndConvert();
		System.out.println(re);
	}

}

查看运行结果,正好是生产者发布的消息,并且消息队列出队发生变化。
Spring整合ActiveMQ---超详细教程

Spring整合ActiveMQ---超详细教程

Spring整合ActiveMQ之主题生产消费

首先修改配置文件applicationContext.xml

	<!-- 主题,一对多 -->
	<bean id="destinationTopic" class="org.apache.activemq.command.ActiveMQTopic">
		<constructor-arg index="0" value="spring-active-topic"></constructor-arg>
	</bean>
	
	<!-- Spring提供的JMS工具类,他可以进行消息发送,接收等 -->
	<bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
		<property name="connectionFactory" ref="jmsFactory"></property>
 		<!-- <property name="defaultDestination" ref="destinationQueue"></property> -->
 		<property name="defaultDestination" ref="destinationTopic"></property>
 		<property name="messageConverter" >
 			<bean class="org.springframework.jms.support.converter.SimpleMessageConverter"></bean>
 		</property>
	</bean>

然后消费者与生产者的代码不用改,我们的配置信息全在applicationContext.xml中。

首先启动消费者进行监听
Spring整合ActiveMQ---超详细教程再启动生产者发布消息。
Spring整合ActiveMQ---超详细教程Spring整合ActiveMQ---超详细教程

Spring整合ActiveMQ之监听器配置

实现在spring里面实现消费者不启动,直接通过配置监听完成。

简单一点,就是把之前消费者中的监听器代码改为使用一个监听类来实现即可。

首先更改配置文件applicationContext.xml

<!-- 配置监听程序 -->
	<bean id="jmsContainer" class="org.springframework.jms.listener.DefaultMessageListenerContainer">
		<property name="connectionFactory" ref="jmsFactory"></property>
		<property name="destination" ref="destinationQueue"></property>
		<!-- public class myMessageListener implements MessageListener -->
		<property name="messageListener" ref="myMessageListener"></property>
	</bean>

然后写我们的监听类

@Component
public class MyMessageListener implements MessageListener{

	@Override
	public void onMessage(Message message) {
		if(null!=message && message instanceof TextMessage) {
			TextMessage textMessage = (TextMessage) message;
			System.out.println("textMessage:"+textMessage);
		}
	}
}

现在测试
只需启动我们的生产者,查看运行结果:
Spring整合ActiveMQ---超详细教程

本文地址:https://blog.csdn.net/Zhangxg0206/article/details/109904775