1
當我使用spring batch admin運行多個長時間運行的批處理作業實例時,它會在達到jobLauncher線程池任務執行程序池大小後阻止其他作業運行。但是,從cron創造多個職位似乎工作得很好。以下是作業啓動器配置。Spring批處理並行處理
<bean id="jobLauncher" class="org.springframework.batch.core.launch.support.SimpleJobLauncher">
<property name="jobRepository" ref="jobRepository" />
<property name="taskExecutor" ref="jobLauncherTaskExecutor" />
</bean>
<task:executor id="jobLauncherTaskExecutor" pool-size="6" rejection-policy="ABORT" />
是spring批處理管理員restful API使用不同的作業啓動程序而不是在xml config中指定的?