需要spring.jar中的quartz文件夹 和 quartz1.5.2.jar

spring配置文件的代码
<!-- 注册触发器 -->
  <bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
   <property name="triggers">
   <list>
    <ref local="PrintTrigger"/>
   </list>
  </property>
  <property name="configLocation" value="classpath:quartz.properties"/>
  </bean>
  <!-- 每30秒提醒一次 -->
  <bean id="PrintTrigger"
  class="org.springframework.scheduling.quartz.CronTriggerBean">
  <property name="jobDetail">
   <ref bean="QuartzTest"/>
  </property>
  <property name="cronExpression">
   <value>30 * * * * ?</value>
  </property>
</bean>
<!-- 具体执行对象 -->
<bean id="QuartzTest"
  class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
  <property name="targetObject">
   <ref bean="taskCronServiceImpl"/>   在spring中注册的类名
  </property>
  <property name="targetMethod">
   <value>printTest</value>   方法名
  </property>
  <property name="concurrent" value="false"/>
</bean>

src目录下的quartz.property文件

#============================================================================
# Configure Main Scheduler Properties  
#============================================================================
org.quartz.scheduler.instanceName = TestScheduler
org.quartz.scheduler.instanceId = AUTO
#============================================================================
# Configure ThreadPool  
#============================================================================
org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount = 3
org.quartz.threadPool.threadPriority = 5
#============================================================================
# Configure JobStore  
#============================================================================
org.quartz.jobStore.misfireThreshold = 60000
org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore
#org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
#org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
#org.quartz.jobStore.useProperties = false
#org.quartz.jobStore.dataSource = myDS
#org.quartz.jobStore.tablePrefix = QRTZ_
#org.quartz.jobStore.isClustered = false
#============================================================================
# Configure Datasources  
#============================================================================
#org.quartz.dataSource.myDS.driver = org.postgresql.Driver
#org.quartz.dataSource.myDS.URL = jdbc:postgresql://localhost/dev
#org.quartz.dataSource.myDS.user = jhouse
#org.quartz.dataSource.myDS.password =
#org.quartz.dataSource.myDS.maxConnections = 5

#============================================================================
# Configure Plugins
#============================================================================
#org.quartz.plugin.jobInitializer.overWriteExistingJobs = true
#org.quartz.plugin.jobInitializer.failOnFileNotFound = true
#org.quartz.plugin.jobInitializer.scanInterval = 3600