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