spring2.5整合quartz几步走: 
需要加包:quartz-all-1.6.0.jar、commons-collections.jar、jta.jar 
1、增加schedulingContext.xml 内容如下: 
<?xml version="1.0" encoding="GBK"?> 
<beans xmlns="http://www.springframework.org/schema/beans
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context
xsi:schemaLocation=" 
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
http://www.springframework.org/schema/aop 
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd 
http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd 
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-2.5.xsd"> 
</beans> 
2、增加任务bean 
<bean id="htmlTask" class="com.netease.sample_project.task.HTMLTask" /> 
描述如下: 
public class HTMLTask { 
/** 
  * 每1分钟生成一次 
  */ 
public void build1() { 
  System.out.println("=========================== start build1 ==========================="); 


3、增加任务task 
<bean id="build1Task" 
  class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> 
  <property name="targetObject" ref="htmlTask" /><!--关联的bean--> 
  <property name="targetMethod" value="build1" /><!--关联的bean的方法--> 
  <property name="concurrent" value="false" /><!--配置为false不允许任务并发执行--> 
</bean> 
4、增加触发器 
<!--每隔1分钟重新生成每1分钟刷新一次的模板静态页--> 
<bean id="build1Trigger" class="org.springframework.scheduling.quartz.CronTriggerBean"> 
  <property name="jobDetail" ref="build1Task" /> 
  <property name="cronExpression" value="0 */1 * * * ?" /> 
</bean> 
5、配置org.springframework.scheduling.quartz.SchedulerFactoryBean 
<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> 
  <property name="triggers"> 
   <list> 
    <ref bean="build1Trigger" /> 
   </list> 
  </property> 
</bean> 
6、web.xml中添加:classpath:schedulingContext.xml 
  <!-- Spring config --> 
    <context-param> 
        <param-name>contextConfigLocation</param-name> 
        <param-value> 
             classpath:applicationContext.xml 
    classpath:applicationContext-dao.xml 
     classpath:applicationContext-business.xml 
     classpath:applicationContext-web.xml 
     classpath:schedulingContext.xml 
        </param-value> 
    </context-param> 
完整文件事例:schedulingContext.xml 
<?xml version="1.0" encoding="GBK"?> 
<beans xmlns="http://www.springframework.org/schema/beans
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context
xsi:schemaLocation=" 
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
http://www.springframework.org/schema/aop 
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd 
http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd 
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-2.5.xsd"> 
<bean id="htmlTask" class="com.netease.sample_project.task.HTMLTask" /> 
<bean id="build1Task" 
  class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> 
  <property name="targetObject" ref="htmlTask" /> 
  <property name="targetMethod" value="build1" /> 
  <property name="concurrent" value="false" /> 
</bean> 
<!--每隔1分钟刷新一次--> 
<bean id="build1Trigger" class="org.springframework.scheduling.quartz.CronTriggerBean"> 
  <property name="jobDetail" ref="build1Task" /> 
  <property name="cronExpression" value="0 */1 * * * ?" /> 
</bean> 
<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> 
  <property name="triggers"> 
   <list> 
    <ref bean="build1Trigger" /> 
   </list> 
  </property> 
</bean> 
</beans> 
注:cronExpression说明 
字段 允许值 允许的特殊字符    
秒 0-59 , - * /    
分 0-59 , - * /    
小时 0-23 , - * /    
日期 1-31 , - * ? / L W C    
月份 1-12 或者 JAN-DEC , - * /    
星期 1-7 或者 SUN-SAT , - * ? / L C #    
年(可选) 留空, 1970-2099 , - * /    
表达式意义    
"0 0 12 * * ?" 每天中午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期间的每1分钟触发    
"0 0/5 14 * * ?" 在每天下午2点到下午2:55期间的每5分钟触发    
"0 0/5 14,18 * * ?" 在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发    
"0 0-5 14 * * ?" 在每天下午2点到下午2:05期间的每1分钟触发    
"0 10,44 14 ? 3 WED" 每年三月的星期三的下午2:10和2:44触发    
"0 15 10 ? * MON-FRI" 周一至周五的上午10:15触发    
"0 15 10 15 * ?" 每月15日上午10:15触发    
"0 15 10 L * ?" 每月最后一日的上午10:15触发    
"0 15 10 ? * 6L" 每月的最后一个星期五上午10:15触发    
"0 15 10 ? * 6L 2002-2005" 2002年至2005年的每月的最后一个星期五上午10:15触发    
"0 15 10 ? * 6#3" 每月的第三个星期五上午10:15触发    
每天早上6点    
0 6 * * *    
每两个小时    
0 */2 * * *    
晚上11点到早上8点之间每两个小时,早上八点    
0 23-7/2,8 * * *    
每个月的4号和每个礼拜的礼拜一到礼拜三的早上11点    
0 11 4 * 1-3   
1月1日早上4点    
0 4 1 1 *
 
补充说明:
CronTrigger配置格式:
格式: [秒] [分] [小时] [日] [月] [周] [年]
序号
说明 
是否必填
允许填写的值
允许的通配符
1
0-59 
, - * /
2
0-59 
, - * /
3
小时
0-23
, - * /
4
1-31
, - * ? / L W
5
1-12 or JAN-DEC
, - * /
6
1-7 or SUN-SAT
, - * ? / L # 
7
empty 或 1970-2099
, - * / 
通配符说明:
:表示所有值. 例如:在分的字段上设置 "*",表示每一分钟都会触发。
:表示不指定值。使用的场景为不需要关心当前设置这个字段的值。例如:要在每月的10号触发一个操作,但不关心是周几,所以需要周位置的那个字段设置为"?" 具体设置为 0 0 0 10 * ?
:表示区间。例如 在小时上设置 "10-12",表示 10,11,12点都会触发。
:表示指定多个值,例如在周字段上设置 "MON,WED,FRI" 表示周一,周三和周五触发
:用于递增触发。如在秒上面设置"5/15" 表示从5秒开始,每增15秒触发(5,20,35,50)。 在月字段上设置'1/3'所示每月1号开始,每隔三天触发一次。
:表示最后的意思。在日字段设置上,表示当月的最后一天(依据当前月份,如果是二月还会依据是否是润年[leap]), 在周字段上表示星期六,相当于"7"或"SAT"。如果在"L"前加上数字,则表示该数据的最后一个。
例如在周字段上设置"6L"这样的格式,则表示“本月最后一个星期五" 
:表示离指定日期的最近那个工作日(周一至周五). 例如在日字段上设置"15W",表示离每月15号最近的那个工作日触发。如果15号正好是周六,则找最近的周五(14号)触发, 如果15号是周未,则找最近的下周一(16号)触发.如果15号正好在工作日(周一至周五),则就在该天触发。如果指定格式为 "1W",它则表示每月1号往后最近的工作日触发。如果1号正是周六,则将在3号下周一触发。(注,"W"前只能设置具体的数字,不允许区间"-").
'L'和 'W'可以一组合使用。如果在日字段上设置"LW",则表示在本月的最后一个工作日触发 
 
:序号(表示每月的第几周星期几),例如在周字段上设置"6#3"表示在每月的第三个周星期六.注意如果指定"6#5",正好第五周没有星期六,则不会触发该配置(用在母亲节和父亲节再合适不过了) 
周字段的设置,若使用英文字母是不区分大小写的 MON 与mon相同.
常用示例: 
格式: [秒] [分] [小时] [日] [月] [周] [年]
0 0 12 * * ?           每天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点59分(整点开始,每隔5分触发)  
0 0/5 14,18 * * ?        每天下午的 18点到18点59分(整点开始,每隔5分触发) 
0 0-5 14 * * ?            每天下午的 2点到2点05分每分触发 
0 10,44 14 ? 3 WED        3月分每周三下午的 2点10分和2点44分触发 
0 15 10 ? * MON-FRI       从周一到周五每天上午的10点15分触发 
0 15 10 15 * ?            每月15号上午10点15分触发 
0 15 10 L * ?             每月最后一天的10点15分触发 
0 15 10 ? * 6L            每月最后一周的星期五的10点15分触发 
0 15 10 ? * 6L 2002-2005  从2002年到2005年每月最后一周的星期五的10点15分触发 
0 15 10 ? * 6#3           每月的第三周的星期五开始触发 
0 0 12 1/5 * ?            每月的第一个中午开始每隔5天触发一次 
0 11 11 11 11 ?           每年的11月11号 11点11分触发(光棍节)