Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binakot/java-spring-rabbitmq-example
https://github.com/binakot/java-spring-rabbitmq-example
amqp demo example hacktoberfest hacktoberfest-accepted java rabbitmq spring spring-boot spring-cloud
Last synced: about 19 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/binakot/java-spring-rabbitmq-example
- Owner: binakot
- License: mit
- Created: 2020-12-20T20:43:59.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-14T16:46:08.000Z (about 1 year ago)
- Last Synced: 2023-10-16T01:25:13.944Z (about 1 year ago)
- Topics: amqp, demo, example, hacktoberfest, hacktoberfest-accepted, java, rabbitmq, spring, spring-boot, spring-cloud
- Language: Java
- Homepage:
- Size: 1.3 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Java-Spring-RabbitMQ-Example
## Native run (jdk 11 required)
```bash
$ docker run \
--name rabbitmq \
-p 5672:5672 \
-p 15672:15672 \
-d rabbitmq:3-management$ ./gradlew bootRun
```Open RabbitMQ dashboard [http://localhost:15672](http://localhost:15672) with `guest / guest`.
---
## Running with containers (docker & docker-compose required)
```bash
$ ./gradlew build
$ docker-compose build
$ docker-compose up
```Open RabbitMQ dashboard [http://localhost:15672](http://localhost:15672) with `guest / guest`.
To remove containers with all volumes:
```bash
$ docker-compose down --volumes
```![rabbitmq](./assets/rabbitmq.png)