91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

庄浪县| 洪江市| 安庆市| 昌平区| 馆陶县| 周至县| 吉水县| 泸西县| 子长县| 体育| 香港| 南充市| 马边| 镇原县| 定州市| 南部县| 探索| 邵阳县| 忻城县| 怀柔区| 余干县| 灵寿县| 丰镇市| 驻马店市| 子洲县| 嫩江县| 天台县| 湾仔区| 乌兰察布市| 沂南县| 揭东县| 新蔡县| 新乡县| 北宁市| 南靖县| 公主岭市| 长治县| 荃湾区| 武胜县| 丰县| 彭水|