BAEL-5247: Add TaskScheduler config example (#11626)

This commit is contained in:
kwoyke 2021-12-28 14:54:23 +01:00 committed by GitHub
parent 3b687e3fed
commit 525b7b913a
1 changed files with 10 additions and 0 deletions

View File

@ -5,7 +5,9 @@ import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;
import org.springframework.scheduling.TaskScheduler;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
@Configuration
@EnableScheduling
@ -13,6 +15,14 @@ import org.springframework.scheduling.annotation.EnableScheduling;
@PropertySource("classpath:springScheduled.properties")
public class SpringSchedulingConfig {
@Bean
public TaskScheduler taskScheduler() {
ThreadPoolTaskScheduler threadPoolTaskScheduler = new ThreadPoolTaskScheduler();
threadPoolTaskScheduler.setPoolSize(5);
threadPoolTaskScheduler.setThreadNamePrefix("ThreadPoolTaskScheduler");
return threadPoolTaskScheduler;
}
@Bean
public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
return new PropertySourcesPlaceholderConfigurer();