Should the JmsTemplate bean be declared as a prototype bean or as a singleton? I think either option is reasonable and it seems to me it's mainly a question of how Spring implemented that bean but I keep finding conflicting reports about the use over the net.

link|improve this question

70% accept rate
Sorry, you are asking at least 5 questions at once, mixed with your own opinions. There's no good way to answer that. I'm voting to close. Ask 2 or 3 more specific questions, and you'll get answers. – Sean Patrick Floyd Sep 9 '11 at 14:45
@Sean Patrick Floyd It's possible you're right and I did not break down the question correctly. I actually see two questions here, multithreading and jmstemplate, can you please say what the questions are (not in detail of course) so I will not repeat the mistake? BTW, for my own defence, I did think of breaking it down but thought that only part of the picture would make the question less understandable. – Ittai Sep 9 '11 at 14:49
feedback

1 Answer

up vote 1 down vote accepted

JMSTemplate like most of the spring templates is thread safe after creation so you should leave it at scope singleton.

If the runnable is implemented as a inner class it can access the instance variables of the class in which you define it. This can be a spring bean with all the required dependencies (jmsTemplate etc) injected into it.

link|improve this answer
Thanks for your answer. I think I'll take up Sean's suggestion and separate the questions so this question will be about JMSTemplate and I'll mark your answer as correct. I'd appreciate it if you could "follow me" to the next question: stackoverflow.com/questions/7365971/spring-and-multithreading Thanks – Ittai Sep 9 '11 at 18:33
feedback

Your Answer

 
or
required, but never shown

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