org.springframework.jms.core.JmsTemplate only supports one queue using defaultDestination.....

what do I need to do when I have different in and out bound queue?

thanks

link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You've answered your own question - yes, JmsTemplate only provides one default destination.

However, all of the various send/receive methods on JmsTemplate are overloaded with versions that allow you to specify a different destination.

For example, as well as send(MessageCreator) there is also send(Destination, MessageCreator). All of the methods are overloaded like this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.