🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] # 安装 1. 下载ActiveMQ 去官方网站下载:http://activemq.apache.org/ 2. 运行ActiveMQ 解压缩apache-activemq-5.5.1-bin.zip, 修改配置文件activeMQ.xml,将0.0.0.0修改为localhost ~~~ <transportConnectors> <transportConnector name="openwire" uri="tcp://localhost:61616"/> <transportConnector name="ssl" uri="ssl://localhost:61617"/> <transportConnector name="stomp" uri="stomp://localhost:61613"/> <transportConnector uri="http://localhost:8081"/> <transportConnector uri="udp://localhost:61618"/> ~~~ 然后双击`apache-activemq-5.5.1\bin\win64\activemq.bat`运行ActiveMQ程序。 启动ActiveMQ以后,登陆:`http://localhost:8161/admin/`,创建一个Queue,命名为FirstQueue。 3. 运行代码 ~~~ package cn.itcast_03_mq.queue package cn.itcast_03_mq.topic ~~~ 账号密码都是admin 4. 配置文件activemq.xml ![](https://box.kancloud.cn/da1e918d59e0899dec9cf246edf8d8f1_924x198.png)