首先在xml配置文件頭中添加以下幾行:
xmlns:task="
http://www.springframework.org/schema/task"
在xml中添加配置:<task:annotation-driven />
配置自動掃描:
<context:component-scan base-package="com.practice.*" />
在要進行定時任務的類前加上 @Component
在定時任務的方法上加上 @Scheduled(corn = "")
corn的內容下面介紹
完成后啟動項目,springMVC會自動掃描並完成定時任務。我的例子如下:
1 package com.practice.prac.service.Impl; 2 3 import java.text.DateFormat; 4 import java.text.SimpleDateFormat; 5 import java.util.Date; 6 7 import javax.annotation.Resource; 8 9 import org.springframework.scheduling.annotation.Scheduled; 10 import org.springframework.stereotype.Component; 11 import org.springframework.stereotype.Service; 12 13 import com.practice.prac.dao.CreateTableByDayMapper; 14 import com.practice.prac.service.CreateTableByDayService; 15 16 @Service("CreateTableByDayService") 17 @Component 18 public class CreateTableByDayImpl implements CreateTableByDayService { 19 20 @Resource 21 CreateTableByDayMapper createTableByDayMapper; 22 23 @Override 24 @Scheduled(cron = "*/5 * * * * ?") 25 public void createTable() { 26 27 DateFormat fmt = new SimpleDateFormat("yyyyMMdd"); 28 String time = fmt.format(new Date()); 29 String sql = "create table if not exists table_name_" + time 30 + " (name varchar(50),value varchar(50))"; 31 createTableByDayMapper.createTable(sql); 32 } 33 34 }
corn的配置情況如下:
CRON表達式 含義
"0 0 12 * * ?" 每天中午十二點觸發
"0 15 10 ? * *" 每天早上10:15觸發
"0 15 10 * * ?" 每天早上10:15觸發
"0 15 10 * * ? *" 每天早上10:15觸發
"0 15 10 * * ? 2005" 2005年的每天早上10:15觸發
"0 * 14 * * ?" 每天從下午2點開始到2點59分每分鍾一次觸發
"0 0/5 14 * * ?" 每天從下午2點開始到2:55分結束每5分鍾一次觸發
"0 0/5 14,18 * * ?" 每天的下午2點至2:55和6點至6點55分兩個時間段內每5分鍾一次觸發
"0 0-5 14 * * ?" 每天14:00至14:05每分鍾一次觸發
"0 10,44 14 ? 3 WED" 三月的每周三的14:10和14:44觸發
"0 15 10 ? * MON-FRI" 每個周一、周二、周三、周四、周五的10:15觸發
"0 0 12 * * ?" 每天中午十二點觸發
"0 15 10 ? * *" 每天早上10:15觸發
"0 15 10 * * ?" 每天早上10:15觸發
"0 15 10 * * ? *" 每天早上10:15觸發
"0 15 10 * * ? 2005" 2005年的每天早上10:15觸發
"0 * 14 * * ?" 每天從下午2點開始到2點59分每分鍾一次觸發
"0 0/5 14 * * ?" 每天從下午2點開始到2:55分結束每5分鍾一次觸發
"0 0/5 14,18 * * ?" 每天的下午2點至2:55和6點至6點55分兩個時間段內每5分鍾一次觸發
"0 0-5 14 * * ?" 每天14:00至14:05每分鍾一次觸發
"0 10,44 14 ? 3 WED" 三月的每周三的14:10和14:44觸發
"0 15 10 ? * MON-FRI" 每個周一、周二、周三、周四、周五的10:15觸發
具體參見這邊博客:
http://biaoming.iteye.com/blog/39532
