https://github.com/ozangunalp/code-with-quarkus-amqp-1.0-rabbitmq
https://github.com/ozangunalp/code-with-quarkus-amqp-1.0-rabbitmq
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ozangunalp/code-with-quarkus-amqp-1.0-rabbitmq
- Owner: ozangunalp
- Created: 2023-08-04T07:01:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-11T08:09:02.000Z (over 1 year ago)
- Last Synced: 2025-02-07T21:28:53.656Z (4 months ago)
- Language: Java
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# code-with-quarkus-amqp-1.0-rabbitmq
Example project using RabbitMQ as AMQP 1.0 broker.
First start the RabbitMQ configured with AMQP 1.0 plugin defined in `docker-compose.yml`:
```bash
docker compose up
```Then start the application in dev mode:
```bash
quarkus dev
```Because the docker compose service contains the label `quarkus-dev-service-amqp=amqp`, the AMQP dev service will pick it up and configure the application correctly in dev mode, instead of creating a new dev service container.