Hi, I'm new to JMS and I am working on setting up ActiveMQ with Tomcat 6 and Spring. I have most of the basic things configured however I'm a little bit confused with the Message Listener Containers that Spring provides. Reading the documentation it sounds like the Message Listener Container is used to "handle" subscribing (I'm working with Topics), unsubscribing and delivering the message to the listener. I not sure if I'm thinking about this correctly. If this is the case I don't see any documentation on how I would have multiple classes subscribe to the same topic using the Message Listener Container. I see that you can set the messageListener property but that would only allow one class to be able to subscribe to a topic. It doesn't seem right to create another instance of the same Message Listener Container just to have another subscriber (Message Driven POJO) listen to the same topic.
Can anyone shed some light on this for me? I think I may be a little confused.
Thanks in advance!