https://github.com/marky-mark/activemq
https://github.com/marky-mark/activemq
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/marky-mark/activemq
- Owner: marky-mark
- Created: 2011-12-04T14:50:59.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-12-04T17:12:36.000Z (over 14 years ago)
- Last Synced: 2025-02-16T02:44:57.843Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 127 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
This is based on the tutorial of
http://pookey.co.uk/wordpress/archives/74-playing-with-activemq-using-maven
This has 3 seperate Project directories...demonstrating the producer, broker
and Consumer
++++++++++++++++++++++++++++++++++BROKER+++++++++++++++++++++++++++++++++++
Start the broker by going into /mq and execute
"mvn org.apache.activemq.tooling:maven-activemq-plugin:5.4.2:run"
NOTE: Alternatively....go into the activemq directory (after installing)
e.g. /usr/local/Cellar/activemq/5.5.1/
execute 'activemq start'
Checkout "http://localhost:8161/admin/"
++++++++++++++++++++++++++++++++++PRODUCER+++++++++++++++++++++++++++++++++
In the producer directory
mvn clean compile exec:java -Dexec.mainClass=net.timico.messaging.App
++++++++++++++++++++++++++++++++++CONSUMER+++++++++++++++++++++++++++++++++
In the Consumer directory
mvn clean compile exec:java -Dexec.mainClass=net.timico.messaging.App