You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.6 KiB
78 lines
2.6 KiB
package com.yf.exam.config;
|
|
|
|
import lombok.extern.log4j.Log4j2;
|
|
import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.scheduling.annotation.AsyncConfigurer;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
import org.springframework.scheduling.annotation.SchedulingConfigurer;
|
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
|
|
import org.springframework.scheduling.config.ScheduledTaskRegistrar;
|
|
|
|
import java.util.concurrent.Executor;
|
|
import java.util.concurrent.ThreadPoolExecutor;
|
|
|
|
/**
|
|
* 任务调度配置
|
|
* @author bool
|
|
*/
|
|
@Log4j2
|
|
@Configuration
|
|
@EnableScheduling
|
|
@EnableAsync
|
|
public class ScheduledConfig implements SchedulingConfigurer, AsyncConfigurer {
|
|
|
|
/**
|
|
* 定时任务使用的线程池
|
|
* @return
|
|
*/
|
|
@Bean(destroyMethod = "shutdown", name = "taskScheduler")
|
|
public ThreadPoolTaskScheduler taskScheduler(){
|
|
ThreadPoolTaskScheduler scheduler = new ThreadPoolTaskScheduler();
|
|
scheduler.setPoolSize(10);
|
|
scheduler.setThreadNamePrefix("task-");
|
|
scheduler.setAwaitTerminationSeconds(600);
|
|
scheduler.setWaitForTasksToCompleteOnShutdown(true);
|
|
return scheduler;
|
|
}
|
|
|
|
/**
|
|
* 异步任务执行线程池
|
|
* @return
|
|
*/
|
|
@Bean(name = "asyncExecutor")
|
|
public ThreadPoolTaskExecutor asyncExecutor() {
|
|
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
|
|
executor.setCorePoolSize(10);
|
|
executor.setQueueCapacity(1000);
|
|
executor.setKeepAliveSeconds(600);
|
|
executor.setMaxPoolSize(20);
|
|
executor.setThreadNamePrefix("taskExecutor-");
|
|
executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
|
|
executor.initialize();
|
|
return executor;
|
|
}
|
|
|
|
@Override
|
|
public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
|
|
ThreadPoolTaskScheduler taskScheduler = taskScheduler();
|
|
scheduledTaskRegistrar.setTaskScheduler(taskScheduler);
|
|
}
|
|
|
|
@Override
|
|
public Executor getAsyncExecutor() {
|
|
return asyncExecutor();
|
|
}
|
|
|
|
@Override
|
|
public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {
|
|
return (throwable, method, objects) -> {
|
|
log.error("异步任务执行出现异常, message {}, emthod {}, params {}", throwable, method, objects);
|
|
};
|
|
}
|
|
|
|
}
|