|
|
@ -56,4 +56,17 @@ public class ThreadPoolConfig { |
|
|
|
} |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
|
@Bean(name = "atomicTaskExecutor") |
|
|
|
public ThreadPoolTaskExecutor atomicTaskExecutor() { |
|
|
|
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); |
|
|
|
executor.setCorePoolSize(core); |
|
|
|
executor.setMaxPoolSize(core * 2); |
|
|
|
executor.setQueueCapacity(threadPoolProperties.getQueueCapacity()); |
|
|
|
executor.setKeepAliveSeconds(threadPoolProperties.getKeepAliveSeconds()); |
|
|
|
executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy()); |
|
|
|
executor.setThreadNamePrefix("atomic-task-"); |
|
|
|
executor.initialize(); |
|
|
|
return executor; |
|
|
|
} |
|
|
|
} |
|
|
|