Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gal16v8d/rabbitmq
https://github.com/gal16v8d/rabbitmq
java maven rabbitmq
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/gal16v8d/rabbitmq
- Owner: gal16v8d
- Created: 2023-04-27T21:17:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-19T05:37:50.000Z (12 months ago)
- Last Synced: 2024-04-29T22:46:52.425Z (6 months ago)
- Topics: java, maven, rabbitmq
- Language: Java
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rabbitmq
Basic sample of RabbitMQ usage.
For the sample you will need:
* Java 17
* Maven
* DockerFor get started with the docker image execute:
- docker pull rabbitmq
- docker run -d -p 15672:15672 -p 5672:5672 rabbitmq:3-managementYou can check the page docker-ip:15672 and login with the default user
# Running the samples
## Basic
Run RabbitLauncher.java## Point to Point
Run PtpRunner.java## Publish Subscribe
Run PublishSubscribeRunner.java## RPC
Run RabbitRPCServerLauncher.java then run RabbitRPCClientLauncher.java