2020
10-10
10-10
Springboot集成定时器和多线程异步处理操作
需求:用@schedule标签进行定时处理逻辑,由于业务处理速度慢,需要每次执行逻辑放在不同的线程里异步执行springboot集成多线程异步,直接上配置:/***线程池异步配置*/@Configuration@EnableAsyncpublicclassThreadExecutorConfigimplementsAsyncConfigurer{@OverridepublicExecutorgetAsyncExecutor(){ThreadPoolTaskExecutorexecutor=newThreadPoolTaskExecutor();//设置核心线程数executor.s...
继续阅读 >