I’m working on containerising a Java Spring Boot application that consumes from a JMS queue.
In order to run locally with Docker I’m trying to create a local instance of ActiveMQ from the Docker compose file.
I can start an instance, but I haven’t been unable to add a queue from the Docker compose environment variables or CLI. Trying to stay light on configuration here as is the Java app I’m trying to test. Idea is for the application to consume from the queue and push a payload to the queue from SOAP UI or postman.
Am I going about this all wrong? Is there a simpler way to hit the JmsListeners in the Java application?