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" /> //定時器所在文包
