Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 794 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 794 Bytes

rmqtest

Simple Spring Boot application that sends every 5s a message to RMQ and receives it. To build the project please run

gradle clean build

or if no gradle installation exists

./gradlew clean build

The Spring Boot AMQP configuration is used. The application expects RabbitMQ to be running localhost:5672 (Property spring.rabbitmq.host and spring.rabbitmq.port) or if deployed to PCF a RabbitMQ service binding is expected.

NOTE: The application is based on the Messaging with RabbitMQ example.§