In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
It is believed that many inexperienced people have no idea about how to configure thread pool in springboot. Therefore, this paper summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.
1. Add configimport 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@Slf4jpublic class ExecutorConfig {@ Bean ("taskExecutor") public Executor asyncServiceExecutor () {log.info ("- create thread pool--") ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor (); / / number of core threads executor.setCorePoolSize (10); / / maximum number of threads executor.setMaxPoolSize (20); / / queue size executor.setQueueCapacity (200); / / configure the name prefix executor.setThreadNamePrefix ("async-method-") of threads in the thread pool / * rejection-policy: how to deal with the new task thread pool's strategy for rejecting tasks when pool has reached max size: the CallerRunsPolicy policy is used here. When the thread pool has no processing capacity, this policy runs the rejected task directly in the calling thread of the execute method. If the executor has been closed, the task * / executor.setRejectedExecutionHandler (new ThreadPoolExecutor.CallerRunsPolicy ()) will be discarded; / / when the thread pool is closed, wait for all tasks to be completed before continuing to destroy other Bean executor.setWaitForTasksToCompleteOnShutdown (true). / / set the waiting time of the task in the thread pool, and force it to be destroyed if it has not been destroyed, so as to ensure that the application can be closed eventually instead of blocking the executor.setAwaitTerminationSeconds (60); / / perform initialization executor.initialize (); return executor;}} 2. Define an asynchronous method / * Asynchronous invocation test interface * / public interface IAsyncService {void testAsyncMethod () throws Exception;} @ Service@Slf4jpublic class AsyncServiceImpl implements IAsyncService {/ / where @ bean in taskExecutor and config are consistent @ Async ("taskExecutor") @ Override public void testAsyncMethod () throws Exception {log.info ("Asynchronous method, go--"); long start = System.currentTimeMillis (); Thread.sleep (5000) Long end = System.currentTimeMillis (); log.info ("Asynchronous method, end:" + (end-start) + "millisecond");}}
3. test
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 ("Test succeeded!") ;}
The console prints as follows:
Note:
If an error is found in the startup project:
Solution: add configuration to yml
Spring: main: allow-bean-definition-overriding: true after reading the above, have you mastered how to configure thread pools in springboot? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.