springboot 中如何配置線程池,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
創(chuàng)新互聯(lián)公司專注于承德網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供承德營銷型網(wǎng)站建設(shè),承德網(wǎng)站制作、承德網(wǎng)頁設(shè)計(jì)、承德網(wǎng)站官網(wǎng)定制、重慶小程序開發(fā)公司服務(wù),打造承德網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供承德網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
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("---創(chuàng)建線程池---"); ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); //核心線程數(shù) executor.setCorePoolSize(10); //最大線程數(shù) executor.setMaxPoolSize(20); //隊(duì)列大小 executor.setQueueCapacity(200); //配置線程池中的線程的名稱前綴 executor.setThreadNamePrefix("async-method-"); /* rejection-policy:當(dāng)pool已經(jīng)達(dá)到max size的時(shí)候,如何處理新任務(wù) 線程池對(duì)拒絕任務(wù)的處理策略:此處采用了CallerRunsPolicy策略, 當(dāng)線程池沒有處理能力的時(shí)候,該策略會(huì)直接在execute方法的調(diào)用線程中運(yùn)行被拒絕的任務(wù); 如果執(zhí)行程序已被關(guān)閉,則會(huì)丟棄該任務(wù) */ executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy()); //設(shè)置線程池關(guān)閉的時(shí)候等待所有任務(wù)都完成再繼續(xù)銷毀其他的Bean executor.setWaitForTasksToCompleteOnShutdown(true); //設(shè)置線程池中任務(wù)的等待時(shí)間,如果超過這個(gè)時(shí)候還沒有銷毀就強(qiáng)制銷毀,以確保應(yīng)用最后能夠被關(guān)閉,而不是阻塞住 executor.setAwaitTerminationSeconds(60); //執(zhí)行初始化 executor.initialize(); return executor; } }
/** * 異步調(diào)用測試接口 */ 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("異步方法,結(jié)束:" + (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("測試成功!"); }
控制臺(tái)打印如下:
備注:
如果發(fā)現(xiàn)啟動(dòng)項(xiàng)目報(bào)錯(cuò):
解決方案:yml中添加配置
spring: main: allow-bean-definition-overriding: true
看完上述內(nèi)容,你們掌握springboot 中如何配置線程池的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!