亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

沂源县| 双鸭山市| 皮山县| 滨州市| 宜宾县| 和平县| 巨野县| 巴彦县| 通江县| 太湖县| 彰化县| 淮北市| 富源县| 沙田区| 南陵县| 田阳县| 雅江县| 南木林县| 会昌县| 文昌市| 宝鸡市| 韩城市| 宜川县| 双牌县| 正阳县| 吉安市| 大港区| 体育| 楚雄市| 廉江市| 桐乡市| 东乡| 都江堰市| 荆门市| 垣曲县| 墨玉县| 平邑县| 莎车县| 青田县| 拉萨市| 南涧|