摘要: /** * 拷贝文件 */ public static void copyFile(File srcFile, File targetFile) throws IOException { FileInputStream inputStream = new FileInputStream(srcFil 阅读全文
posted @ 2023-04-02 10:59 不浪费时光 阅读(10) 评论(0) 推荐(0) 编辑
摘要: ##使用注解@Scheduled 1.在启动类上添加注解@EnableScheduling开启定时任务 2.创建定时任务 @Component public class StatisticsComp { /** * 日统计(每日0点1分触发) */ @Scheduled(cron = "0 1 0 阅读全文
posted @ 2023-04-02 10:42 不浪费时光 阅读(35) 评论(0) 推荐(0) 编辑