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();
    

 

@Scheduled参数及cron表达式解释

以上是关于springboot定时任务的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot的定时任务

springboot开启定时任务 添加定时任务 推送

SpringBoot入门 定时任务

jeesite 定时任务 或者springboot 执行定时任务

SpringBoot整合定时任务和异步任务处理

SpringBoot创建定时任务