springboot集成activemq的实例代码
程序员文章站
2024-02-23 21:35:46
activemq
activemq 是apache出品,最流行的,能力强劲的开源消息总线。activemq 是一个完全支持jms1.1和j2ee 1.4规范的 jms...
activemq
activemq 是apache出品,最流行的,能力强劲的开源消息总线。activemq 是一个完全支持jms1.1和j2ee 1.4规范的 jms provider实现,尽管jms规范出台已经是很久的事情了,但是jms在当今的j2ee应用中间仍然扮演着特殊的地位。
特性
- 多种语言和协议编写客户端。语言: java,c,c++,c#,ruby,perl,python,php。应用协议: openwire,stomp rest,ws notification,xmpp,amqp
- 完全支持jms1.1和j2ee 1.4规范 (持久化,xa消息,事务)
- 对spring的支持,activemq可以很容易内嵌到使用spring的系统里面去,而且也支持spring2.0的特性
- 通过了常见j2ee服务器(如 geronimo,jboss 4,glassfish,weblogic)的测试,其中通过jca 1.5 resource adaptors的配置,可以让activemq可以自动的部署到任何兼容j2ee 1.4 商业服务器上
- 支持多种传送协议:in-vm,tcp,ssl,nio,udp,jgroups,jxta
- 支持通过jdbc和journal提供高速的消息持久化
- 从设计上保证了高性能的集群,客户端-服务器,点对点
- 支持ajax
- 支持与axis的整合
- 可以很容易的调用内嵌jms provider,进行测试
更多关于 activemq 的内容可以。
spring-boot 集成 activemq
添加maven依赖
<!-- <dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-activemq</artifactid> </dependency> --> <dependency> <groupid>org.springframework</groupid> <artifactid>spring-jms</artifactid> </dependency> <dependency> <groupid>org.apache.activemq</groupid> <artifactid>activemq-client</artifactid> </dependency>
没有直接使用注释的依赖,是因为其含有如下依赖
<dependency> <groupid>org.apache.activemq</groupid> <artifactid>activemq-broker</artifactid> </dependency>
而它的作用是什么呢,会在程序中直接内嵌 activitymq,也就是说不需要安装 activemq,但是这个如果服务宕机了,内嵌的 activemq 也就没了。关键,这个内嵌的 activemq 而无法看到图形化界面,所以这里没有直接使用注释里的依赖。
在application.properties中增加如下配置
# activemq spring.activemq.broker-url=tcp://localhost:61616 spring.activemq.user=admin spring.activemq.password=admin spring.activemq.in-memory=true spring.activemq.pool.enabled=false
这里对 activemq 的端口做一个简短说明,61616为消息代理接口 ,8161 为管理界面
java代码实现
定义queue
package com.activemq.queue; import org.apache.activemq.command.activemqqueue; import org.springframework.context.annotation.bean; import org.springframework.context.annotation.configuration; import javax.jms.queue; @configuration public class queueconfig { @bean public queue logqueue() { return new activemqqueue(queuename.log_queue); } }
消息生产者
package com.activemq.producer; import org.slf4j.logger; import org.slf4j.loggerfactory; import org.springframework.beans.factory.annotation.autowired; import org.springframework.boot.commandlinerunner; import org.springframework.jms.core.jmsmessagingtemplate; import org.springframework.stereotype.component; import javax.jms.queue; @component public class logproducer implements commandlinerunner { private static final logger logger = loggerfactory.getlogger(logproducer.class); @autowired private jmsmessagingtemplate jmsmessagingtemplate; @autowired private queue logqueue; @override public void run(string... strings) throws exception { send("this is a log message."); logger.info("log message was sent to the queue named sample.log"); } public void send(string msg) { this.jmsmessagingtemplate.convertandsend(this.logqueue, msg); } }
消息消费者
package com.activemq.consumer; import com.activemq.queue.queuename; import org.slf4j.logger; import org.slf4j.loggerfactory; import org.springframework.jms.annotation.jmslistener; import org.springframework.stereotype.component; @component public class logconsumer { private static final logger logger = loggerfactory.getlogger(logconsumer.class); @jmslistener(destination = queuename.log_queue) public void receivedqueue(string msg) { logger.info("has received from " + queuename.log_queue + ", msg: " + msg); } }
测试接口
@autowired private logproducer logproducer; @getmapping("/activemq/send") public string activemq(httpservletrequest request, string msg) { msg = stringutils.isempty(msg) ? "this is empty msg." : msg; try { logproducer.send(msg); } catch (exception e) { e.printstacktrace(); } return "activemq has sent ok."; }
启动类
增加如下注解@enablejms
@configuration//配置控制 @enableautoconfiguration//启用自动配置 @componentscan//组件扫描 @enableconfigurationproperties({emailprop.class}) @enablejms public class bootstrap { private static final logger logger = loggerfactory .getlogger(bootstrap.class); public static void main(string[] args) throws exception { springapplication.run(bootstrap.class, args); logger.info("server running..."); } }
测试
运行服务,在浏览器输入 http://127.0.0.1:8080/activemq/send?msg=test%20log,会在控制台看到如下输出
info 1498 --- [enercontainer-1] c.j.a.activemq.consumer.logconsumer : has received from sample.log, msg: test log [defaultmessagelistenercontainer-1] info c.j.a.activemq.consumer.logconsumer - has received from sample.log, msg: test log
打开 activemq 的管理页面,用户名密码都是admin,可以看到如下信息
官方示例:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: JSP的出错处理
下一篇: mysql 8.0.11安装教程图文解说