智慧保安后台管理-外网项目备份
zhongrj
2023-09-17 8853292babb2ad94de4a3207966f1e83b767cd2d
src/main/java/org/springblade/common/config/AsyncConfig.java
@@ -1,10 +1,14 @@
package org.springblade.common.config;
import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.task.TaskExecutor;
import org.springframework.scheduling.annotation.AsyncConfigurer;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import java.util.concurrent.Executor;
import java.util.concurrent.ThreadPoolExecutor;
/**
@@ -13,21 +17,22 @@
 * @since 2022-02-22
 */
@EnableAsync
public class AsyncConfig {
public class AsyncConfig{
   @Bean
   public TaskExecutor executor(){
   public Executor getAsyncExecutor() {
      ThreadPoolTaskExecutor executor=new ThreadPoolTaskExecutor();
      //核心线程数
      executor.setCorePoolSize(10);
      executor.setCorePoolSize(4);
      //最大线程数
      executor.setMaxPoolSize(20);
      executor.setMaxPoolSize(6);
      //队列大小
      executor.setQueueCapacity(1000);
      //线程最大空闲时间
      executor.setKeepAliveSeconds(300);
      executor.setThreadNamePrefix("fsx-Executor-");
      //指定用于新创建的线程名称的前缀。
      executor.setThreadNamePrefix("fsx-Executor-");
      //设置拒绝策略  CallerRunsPolicy 由调用的线程来处理这个任务
      executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
      //返回
      return executor;