本文主要是介绍Scheduled多任务的冲突解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*** @author gaoshanshan** @Scheduled多任务的冲突解决* @date 2022/1/7*/
@Configuration
@EnableAsync
public class TaskScheduleConfig {private static final int corePoolSize = 10; // 默认线程数private static final int maxPoolSize = 100; // 最大线程数private static final int keepAliveTime = 10; // 允许线程空闲时间(单位:默认为秒),十秒后就把线程关闭private static final int queueCapacity = 200; // 缓冲队列数private static final String threadNamePrefix = "it`s-threadDemo-"; // 线程池名前缀@Bean("threadPoolTaskExecutor")public ThreadPoolTaskExecutor getDemoThread(){ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();executor.setCorePoolSize(corePoolSize);executor.setMaxPoolSize(maxPoolSize);executor.setQueueCapacity(keepAliveTime);executor.setKeepAliveSeconds(queueCapacity);executor.setThreadNamePrefix(threadNamePrefix);//线程池拒绝任务的处理策略executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
//初始化executor.initialize();return executor;}
}
定时任务写法
/*** @author gaoshanshan* @date 2022/1/7*/
@Component
public class SchedulerTaskController {private Logger logger= LoggerFactory.getLogger(SchedulerTaskController.class);private static final SimpleDateFormat dateFormat=new SimpleDateFormat("HH:mm:ss");private int count=0;@Scheduled(cron="0/1 * * * * ?")@Async("threadPoolTaskExecutor")public void process(){logger.info("英文:this is scheduler task runing "+(count++));}@Scheduled(fixedRate = 6000)@Async("threadPoolTaskExecutor")public void currentTime(){logger.info("中文:现在时间"+dateFormat.format(new Date()));}@Scheduled(fixedRate = 1000)@Async("threadPoolTaskExecutor")public void currentTime2(){logger.info("中文--------:现在时间"+dateFormat.format(new Date()));}@Scheduled(fixedDelay = 1000)@Async("threadPoolTaskExecutor")public void currentTime3(){logger.info("中文>>>>>>>>:现在时间"+dateFormat.format(new Date()));}
}
这篇关于Scheduled多任务的冲突解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!