1,首先搭建linux上的activeMq
https://activemq.apache.org/ 去官网下载包
下载后上传服务器
我自己喜欢放root目录下
让后解压到 /usr/local/目录下
解压命令
tar -zxvf apache-activemq-5.15.15-bin.tar.gz -C /usr/local/
conf 目录配置
一 Web 控制台安全
/conf/jetty-realm.properties 设置用户名和密码,格式为–> 用户名:密码,角色名
二
在 conf/activemq.xml 文件中的的broker内加上:
<plugins> <simpleAuthenticationPlugin> <users> <authenticationUser username="system" password="123456" groups="users,admins"/> </users> </simpleAuthenticationPlugin> </plugins>
bin目录
启动 ./acticemq start 停止 ./acticemq stop
启动mq
web端 http://IP地址:8161 账号 密码 是 admin 123456
点进去
以上就把linux上的activeMq搭建好了
配置生产者 springboot服务器
配置文件
代码 发生消息 JmsTemplate 会在服务启动自动同步配置文件赋值链接mq 所以直接注入调用就行了
我用的是点对点的 controller自己写就行了 给个路径调用就会发生消息到mq服务器上
就会显示1条消息
配置springboot消费者服务
配置文件和上面一样赋值过去就行了
自定义个类 加上JmsListener就行了 这样服务一起动就会接收到你发的消息进行消费了
<!--Springboot整合集成activemq的起步依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-activemq</artifactId> </dependency>
目前我认为是最简单的使用方法 当然里面还有很多功能和方法,如果大家看不懂或者不满足现在业务可以留言 看到我会第一时间回复。