首先在applicationContext.xml中增加
文件頭中增加一條
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation 中增加一條 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
<beans xmlns:task="http://www.springframework.org/schema/task" http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd" >
<!-- 定義使用注解自動掃描的包 -->
<context:component-scan base-package="xxx" /> 定時器必須屬於掃描的包中
<!-- 打開定時器開關 -->
<task:annotation-driven/>
下面是定時器的寫法
fixedDelay = 5000 表示每隔5秒執行
import java.text.SimpleDateFormat; import java.util.Date; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; @Component public class TestJob { @Scheduled(fixedDelay = 5000) public void test() { System.out.println("job 開始執行"+new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); } }
