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.§