activeMq

1.下载

2.安装

3.修改配置

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

        
            
            
            
            
            
            
        

4.浏览器访问

activeMq_第1张图片

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

你可能感兴趣的:(activemq)