I have a spring-boot application using the spring-boot AMQP library.
pom.xml :
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
How can I make it process and acknowledge a single message then gracefully exit ?
Can make it exit without acknowledge but cannot seem to work out how to acknowledge the message then exit !