1.下载

2.安装

3.修改配置

文件:/apacheactivemq-5.18.2/conf/activemq.xml

        <transportConnectors>
            <!-- DOS protection, limit concurrent connections to 1000 and frame size to 100MB --&gt;
            <transportConnector name="openwire" uri="tcp://0.0.0.0:61616?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="amqp" uri="amqp://0.0.0.0:5672?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="stomp" uri="stomp://0.0.0.0:61613?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="mqtt" uri="mqtt://0.0.0.0:1883?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="ws" uri="ws://0.0.0.0:61614?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600"/>
        </transportConnectors>

4.浏览访问

5.springboot使用案例

配置

# active mq配置
spring:
  profiles:
    include: kafka
  activemq:
    broker-url: tcp://ip:61616  #activeMQ的ip端口号
    user: admin   #activeMq账号
    password: admin #activeMq密码
    queue-name: testQuene #消息队列
    topic-name: testTopic #消息广播
    pool:
      enabled: true       #连接池启动
      max-connections: 10 #最大连接数
    #本地开发关闭jms
    jms:
      enable: true

原文地址:https://blog.csdn.net/xixiyuguang/article/details/134691104

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_38931.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注