Hello. I'm building a Spring MVC+Hibernate web application using WebLogic and have a need for multi-threaded processing (i.e. process a JMS message after persisting the contents).
What is the recommended approach for this? I've considered the following so far:
- Create a thread (or pool of threads)
Trigger some Spring scheduled process (or have it run frequently)
Start up another Servlet and communicate with that from the Spring MVC app
Any ideas would be appreciated. Thanks.


Reply With Quote