论坛首页 Java企业应用论坛

Spring3 Quartz 启动定时任务

浏览 4887 次
该帖已经被评为隐藏帖
作者 正文
   发表时间:2011-07-15  
项目中要加入Quartz 1.6 或者是 1.8的包

      <bean name="ToHISService" class="com.suntown.webservices.his.ToHISService">
      <property name="masterManager" ref="masterManager"/>
      </bean>
    <bean name="quartzScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">

        <property name="applicationContextSchedulerContextKey" value="applicationContextKey"/>
        <property name="configLocation" value="classpath:quartz.properties"/>
<property name="triggers">
<list>  
<ref bean="trigger1"/>
</list>
</property>
    </bean>
   
    <bean id="jobDetail1" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
        <property name="targetObject" ref="ToHISService"/>
        <property name="targetMethod" value="run"/>
    </bean>
    <bean id="trigger1" class="org.springframework.scheduling.quartz.CronTriggerBean">
        <property name="jobDetail" ref="jobDetail1"/>
        <property name="cronExpression" value="0/5 * * ? * * *"/>
    </bean>   
 
   发表时间:2011-07-15  
你这样写,我看的莫名其妙
0 请登录后投票
   发表时间:2011-07-16  
自己深入理解后才写帖子比较好,不要只是贴东西
0 请登录后投票
   发表时间:2011-07-17  
有点莫名其妙。。。应该包含整个过程。
0 请登录后投票
   发表时间:2011-07-17  
  备忘录么?
0 请登录后投票
   发表时间:2011-07-17  
要写一下说明吧。不怎么看得明白。
0 请登录后投票
   发表时间:2011-07-17  
直接隐.凑字数。
0 请登录后投票
   发表时间:2011-07-18  
大家想了解清楚看这个贴!http://uule.iteye.com/admin/blogs/1050502
0 请登录后投票
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics