puzhibing
2023-07-19 b15eab0860ab180108eb9a954e862fee6b0d8bab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.dsh.other.util;
 
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
 
/**
 * @author zhibing.pu
 * @Date 2023/7/19 14:19
 */
@Component
public class TaskUtil {
 
 
    /**
     * 每隔一分钟去处理的定时任务
     */
    @Scheduled(fixedRate = 60000)
    public void taskMinute(){
        try {
            //定时修改赛事状态
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}