springboot定时任务
Posted xiaostudy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot定时任务相关的知识,希望对你有一定的参考价值。
1、主程序添加注解
import org.springframework.scheduling.annotation.EnableScheduling; @EnableScheduling
2、定时任务
可在主程序添加方法,也可在service类添加方法
package com.xiaostudy.shiro_test1.service; import com.xiaostudy.shiro_test1.utils.BackupmysqlUtils; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; /** * Created with IntelliJ IDEA. * User: xiaostudy * Date: 2019/7/25 * Time: 22:40 * Description: No Description */ @Service public class ScheduledService /** * 定时备份mysql,每天22:42备份 */ @Scheduled(cron = "0 42 22 * * ?") public void timingBackupMysql() BackupMysqlUtils.backup();
以上是关于springboot定时任务的主要内容,如果未能解决你的问题,请参考以下文章