https://github.com/v5tech/activemq-example
ActiveMQ Spring Jms Example
https://github.com/v5tech/activemq-example
activemq apollo
Last synced: about 1 year ago
JSON representation
ActiveMQ Spring Jms Example
- Host: GitHub
- URL: https://github.com/v5tech/activemq-example
- Owner: v5tech
- License: mit
- Created: 2014-11-25T10:10:53.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-26T03:02:43.000Z (over 11 years ago)
- Last Synced: 2025-05-07T23:49:02.949Z (about 1 year ago)
- Topics: activemq, apollo
- Language: Java
- Homepage: http://aimeizi.net
- Size: 30.6 MB
- Stars: 8
- Watchers: 4
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
activemq-example
================
ActiveMQ、Apollo、Spring Jms 整合示例。
> 本实例演示环境为:ActiveMQ 5.10 、 Windows 7 X64 、jdk1.7、maven 3.0.5
> 本实例演示环境为:apollo-1.7 、 Windows 7 X64 、jdk1.7、maven 3.0.5
# 安装ActiveMQ
### 1. ActiveMQ 启动
* ActiveMQ 5.10
```
bin\activemq start
```
* ActiveMQ 5.9 or older
```bash
bin\activemq
```
### 2. ActiveMQ 停止
```bash
bin/activemq stop
```
### 3. 访问
[http://localhost:8161/admin/](http://localhost:8161/admin/)
默认的用户名密码为:admin/admin
具体可在`activemq-5.10.0\conf\jetty-realm.properties`文件中配置.
# 安装apollo
### 1. Installation
[下载apollo](http://www.apache.org/dyn/closer.cgi?path=activemq/activemq-apollo/1.7/apache-apollo-1.7-windows-distro.zip)后解压,假若解压目录为apollo-1.7
### 2. Creating a Broker Instance
```bash
apollo-1.7/bin/apollo create mybroker
```
### 3. Running a Broker Instance
```bash
apollo-1.7/bin/mybroker/bin/apollo-broker run
```
### Web Administration
* http [http://127.0.0.1:61680/](http://127.0.0.1:61680/)
* https [https://127.0.0.1:61681/](https://127.0.0.1:61681/)
默认的用户名密码为:admin/password
具体见`apollo-1.7\bin\mybroker\etc\users.properties`
# Screenshots
* ActiveMQ演示

* Apollo演示

* ActiveMQ Maven Plugin演示

# 参考文档
* [http://activemq.apache.org/version-5-getting-started.html](http://activemq.apache.org/version-5-getting-started.html)
* [http://activemq.apache.org/how-do-i-embed-a-broker-inside-a-connection.html](http://activemq.apache.org/how-do-i-embed-a-broker-inside-a-connection.html)
* [http://activemq.apache.org/amqp.html](http://activemq.apache.org/amqp.html)
* [http://activemq.apache.org/apollo/index.html](http://activemq.apache.org/apollo/index.html)
# 参考项目
* [https://github.com/bsnyder/spring-jms-examples](https://github.com/bsnyder/spring-jms-examples)
* [https://github.com/FuseByExample/activemq-amqp-example/](https://github.com/FuseByExample/activemq-amqp-example/)
* [https://github.com/city81/SpringJMSActiveMQ/](https://github.com/city81/SpringJMSActiveMQ/)