I\'m using spring-boot and @Scheduled annotation to execute some tasks.
spring-boot
@Scheduled
How can I find out what the default pool size of scheduled tasks is
Using built-in capabilities and with anotated spring configuration this will be like that:
@Bean public TaskScheduler taskScheduler() { return new ConcurrentTaskScheduler(new ScheduledThreadPoolExecutor(20)); }