目录
1.导入springboot整合ActiveMQ的starter
3.使用JmsMessagingTemplate操作ActiveMQ
4.使用消息监听器在服务器启动后,监听指定位置,当消息出现后,立即消费消息
5.切换消息模型由点对点模型到发布订阅模型,修改jms配置即可
1.导入springboot整合ActiveMQ的starter
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-activemq</artifactId>
</dependency>
2.进行yml文件的基础配置
spring:
activemq:
broker-url: tcp://localhost:61616
3.使用JmsMessagingTemplate操作ActiveMQ
@Service
public class MessageServiceActivemqImpl