您好,登錄后才能下訂單哦!
springboot 中如何配置線程池,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
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; } }
/** * 異步調用測試接口 */ 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("測試成功!"); }
控制臺打印如下:
備注:
如果發現啟動項目報錯:
解決方案:yml中添加配置
spring: main: allow-bean-definition-overriding: true
看完上述內容,你們掌握springboot 中如何配置線程池的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。