I have set up my DefaultMessageListenerContainer with implementation of javax.jms.MessageListener wired to it.
I use MQQueueConnectionFactory wired to cachingconnectionFactory. Have set cacheconsumers to true at DefaultMessageListenerContainer and have set sessionCacheSize to be equivalent to number of concurrentconsumers.
I see that , when concurrentconsumers is set to 10 , ten JMS sessions are created from a single JMS Connection. Is there a way to create the JMS sessions from 10 different JMS connections?
Please advise.