Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gal16v8d/activemq
https://github.com/gal16v8d/activemq
activemq java maven
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/gal16v8d/activemq
- Owner: gal16v8d
- Created: 2023-04-28T02:04:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-24T22:19:45.000Z (11 months ago)
- Last Synced: 2024-04-29T22:46:42.230Z (6 months ago)
- Topics: activemq, java, maven
- Language: Java
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# activemq
Basic sample of ActiveMQ usage.
Point to Point (Queue)
Publish - Subscribe (Topic)For all the samples you will need:
* Java 21
* Maven
* DockerFor get started with the docker image execute:
- docker pull rmohr/activemq
- docker run -p 61616:61616 -p 8161:8161 rmohr/activemqAfter run activemq docker image, you can run the sample:
### Publish - Subscribe
Run ExecutePublishSubscribe.java### Point to Point
Run ExecutePTP.java