中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot 中如何配置線程池

發布時間:2021-06-18 17:33:47 來源:億速云 閱讀:261 作者:Leah 欄目:大數據

springboot 中如何配置線程池,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

1.添加config
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import java.util.concurrent.Executor;
import java.util.concurrent.ThreadPoolExecutor;

@Configuration
@EnableAsync
@Slf4j
public class ExecutorConfig {

    @Bean("taskExecutor")
    public Executor asyncServiceExecutor() {
        log.info("---創建線程池---");
        ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
        //核心線程數
        executor.setCorePoolSize(10);
        //最大線程數
        executor.setMaxPoolSize(20);
        //隊列大小
        executor.setQueueCapacity(200);
        //配置線程池中的線程的名稱前綴
        executor.setThreadNamePrefix("async-method-");
        /*
        rejection-policy:當pool已經達到max size的時候,如何處理新任務
        線程池對拒絕任務的處理策略:此處采用了CallerRunsPolicy策略,
        當線程池沒有處理能力的時候,該策略會直接在execute方法的調用線程中運行被拒絕的任務;
        如果執行程序已被關閉,則會丟棄該任務
        */
        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());

        //設置線程池關閉的時候等待所有任務都完成再繼續銷毀其他的Bean
        executor.setWaitForTasksToCompleteOnShutdown(true);
        //設置線程池中任務的等待時間,如果超過這個時候還沒有銷毀就強制銷毀,以確保應用最后能夠被關閉,而不是阻塞住
        executor.setAwaitTerminationSeconds(60);

        //執行初始化
        executor.initialize();
        return executor;
    }
}
2.定義異步方法
/**
 * 異步調用測試接口
 */
public interface IAsyncService {

    void testAsyncMethod() throws Exception;
}


@Service
@Slf4j
public class AsyncServiceImpl implements IAsyncService {

	//此處taskExecutor和 config中@bean保持一致
    @Async("taskExecutor")
    @Override
    public void testAsyncMethod() throws Exception{
        log.info("異步方法,走起---");
        long start = System.currentTimeMillis();
        Thread.sleep(5000);
        long end = System.currentTimeMillis();
        log.info("異步方法,結束:" + (end - start) + "毫秒");
    }
}

3.測試

	public Result<?> test() {

		System.out.println("1=====================");
		System.out.println("2=====================");

		try {
			asyncService.testAsyncMethod();
		} catch (Exception e) {
			e.printStackTrace();
		}

		System.out.println("3=====================");
		System.out.println("4=====================");
		
		return Result.ok("測試成功!");
	}

控制臺打印如下:

springboot 中如何配置線程池

備注:

如果發現啟動項目報錯:

springboot 中如何配置線程池

解決方案:yml中添加配置

spring:
  main:
    allow-bean-definition-overriding: true

看完上述內容,你們掌握springboot 中如何配置線程池的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

交城县| 醴陵市| 佛学| 平乐县| 郸城县| 板桥市| 裕民县| 民乐县| 仙桃市| 永春县| 芮城县| 阜康市| 玛多县| 开封市| 新源县| 南阳市| 洛隆县| 武城县| 天等县| 施甸县| 抚松县| 曲水县| 宁蒗| 辽阳县| 新化县| 隆子县| 察哈| 和田县| 洛南县| 龙里县| 肇庆市| 册亨县| 汕头市| 株洲县| 汾阳市| 台中县| 昂仁县| 桂东县| 平乡县| 靖西县| 永宁县|