Tagged Questions

7
votes
3answers
14k views

Any good Spring threading with a TaskExecutor examples?

I'm trying to get a handle on how to implement threading in a Java application that uses Spring for transaction management. I've found the TaskExecutor section in the Spring documentation, and ...
1
vote
1answer
24 views

Spring @Async without xml config

25.5.3 The Element To enable both @Scheduled and @Async annotations, simply include the 'annotation-driven' element from the task namespace in your configuration. ...
0
votes
0answers
55 views

Is there a way to create multiple thread executors for different thread types?

I want to use spring 3 task implementations for my application which is going to be multi-threaded. My question is : I want to have 3 thread pools with my seperate thread classes and is there a way ...