June 2018
Intermediate to advanced
408 pages
11h 23m
English
Let's start with adding a dependency for RabbitMQ to pom.xml. The following code shows the dependency to be configured:
<dependency> <groupId>org.springframework.amqp</groupId> <artifactId>spring-rabbit</artifactId> <version>${rabbitmq.version}</version></dependency>
We have added the dependency for RabbitMQ. Now, let's create a class to configure the queue, exchange, and binding between them.
Read now
Unlock full access