摘要: 官方文档地址:https://www.hutool.cn/docs/#/ pom: <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.5.2</version></depe 阅读全文
posted @ 2021-06-24 17:18 雨后丶云初霁 阅读(211) 评论(0) 推荐(0) 编辑
摘要: //每隔5秒执行一次:*/5 * * * * ?//每隔1分钟执行一次:0 */1 * * * ?//每天23点执行一次:0 0 23 * * ?//每天凌晨1点执行一次:0 0 1 * * ?//每月1号凌晨1点执行一次:0 0 1 1 * ?//每月最后一天23点执行一次:0 0 23 L * 阅读全文
posted @ 2021-06-24 14:29 雨后丶云初霁 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 一、创建线程池 @Configuration@EnableAsyncpublic class SpringAsyncConfig { @Bean("taskExecutor") public Executor asyncServiceExecutor() { ThreadPoolTaskExecut 阅读全文
posted @ 2021-06-24 14:25 雨后丶云初霁 阅读(4593) 评论(0) 推荐(0) 编辑