摘要:
/** * 拷贝文件 */ public static void copyFile(File srcFile, File targetFile) throws IOException { FileInputStream inputStream = new FileInputStream(srcFil 阅读全文
摘要:
##使用注解@Scheduled 1.在启动类上添加注解@EnableScheduling开启定时任务 2.创建定时任务 @Component public class StatisticsComp { /** * 日统计(每日0点1分触发) */ @Scheduled(cron = "0 1 0 阅读全文