springMvc 添加定时任务

1、创建定时类

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
public class FlightTrainTask {
    @Scheduled(cron = "0/5 * * * * ? ") // 间隔5秒执行
    public void taskCycle() {
        System.out.println("使用SpringMVC框架配置定时任务");
    }
}

  

2、在spring的配置xml文件中开启定时选项

<task:annotation-driven />
<context:component-scan base-package="com.timer" />  //定时器所在文包

  

猜你喜欢

转载自www.cnblogs.com/cyrfr/p/9274314.html
今日推荐