spring-boot
ThreadPoolTaskExecutor:設定と使用法
サーチ…
アプリケーション構成
@Configuration
@EnableAsync
public class ApplicationConfiguration{
@Bean
public TaskExecutor getAsyncExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(2);
executor.setThreadNamePrefix("executor-task-");
executor.initialize();
return executor;
}
}
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow