pool « Job « Spring Q&A





1. @Scheduled & scheduler: What exactly does pool-size do?    stackoverflow.com

I want to run several scheduled Tasks simultaneously. When configuring spring to do so, I can supply a pool-size to the scheduler:

<task:annotation-driven executor="myExecutor" scheduler="myScheduler"/>
<task:executor id="myExecutor" pool-size="32"/>
<task:scheduler id="myScheduler" pool-size="1000"/>
But what exactly does ...

2. Can we create a pool of Spring ScheduledExecutorTask?    stackoverflow.com

I'm trying to see if there's a possibility to create a pool of spring ScheduledExecutor. What I need is a set a ScheduledExecutor tasks which will perform certain task in a ...

3. Best practice for a pooling job?    forum.springsource.org

Best practice for a pooling job? We have a job that is pooling. It has to look into a directory and pick up files from there if there are some. A ...