java spring的quartz配置使用教程

來源:互聯網
上載者:User

使用環境: eclipse+maven+spring+quartz1
使用目的:執行定時器完成掃描操作.
疑惑點: 使用quartz2版本會出現莫名的錯誤,類似介面與類定義方面的不同.看了一下文檔,也沒有搞清楚.

使用步驟:

1. 配置maven的設定檔(配置使用的是quartz1版本),pom.xml加一下代碼:

 代碼如下 複製代碼

 <!--添加Quartz架構 -->
  <dependency>
   <groupId>org.quartz-scheduler</groupId>
   <artifactId>quartz</artifactId>
   <version>1.8.5</version>
  </dependency>

  <!--組件可選項 -->
  <!--start -->
  <dependency>
   <groupId>javax.transaction</groupId>
   <artifactId>jta</artifactId>
   <version>1.1</version>
  </dependency>

  <dependency>
   <groupId>commons-digester</groupId>
   <artifactId>commons-digester</artifactId>
   <version>1.8</version>
  </dependency>

  <dependency>
   <groupId>commons-beanutils</groupId>
   <artifactId>commons-beanutils</artifactId>
   <version>1.8.3</version>
  </dependency>
  <!--end -->
  
2. 配置spring的設定檔spring.xml檔案,裝載quartz.設定檔加以下代碼:
 <!-- 方式:使用MethodInvokingJobDetailFactoryBean,任務類可以不實現Job介面,通過targetMethod指定調用方法 -->
 <!-- 定義目標bean和bean中的方法 -->
 <bean id="SpringQtzJob"
  class=" com.founder.centerbusiness.controller.basicMgr.RuleMgrController" />
 <bean id="SpringQtzJobMethod"
  class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
  <property name="targetObject">
   <ref bean="SpringQtzJob" />
  </property>
  <property name="targetMethod">  <!-- 要執行的方法名稱 -->
   <value>execute</value>
  </property>
 </bean>

 <!-- ======================== 調度觸發器 ======================== -->
 <bean id="CronTriggerBean" class="org.springframework.scheduling.quartz.CronTriggerBean">
  <property name="jobDetail" ref="SpringQtzJobMethod"></property>
  <!-- 0/1 * * * * ? : 每一秒掃描執行一次 -->
  <property name="cronExpression" value="0/1 * * * * ?"></property>
 </bean>

 <!-- ======================== 調度工廠 ======================== -->
 <bean id="SpringJobSchedulerFactoryBean"
  class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
  <property name="triggers">
   <list>
    <ref bean="CronTriggerBean" />
   </list>
  </property>
 </bean>

其中
  <!-- 0/2 * * * * ? : 每一秒掃描執行一次 -->
  <property name="cronExpression" value="0/2 * * * * ?"></property>
表示的是每1秒掃描一次
  <!-- 0/8 * * * * ? : 每8秒掃描執行一次 -->
  <property name="cronExpression" value="0/8 * * * * ?"></property>
表示的是每8秒掃描一次
具體*表示的是什麼意義,自己去問度娘娘.

id=" SpringQtzJob "表示的是執行操作的本地檔案路徑.
3. 本地執行java檔案代碼如下:
 /**
  * 執行定時器
  */
 protected void execute() {
  String currentTime = DateUtils.getDateTime();
  System.out.println("目前時間--->" + currentTime);
 }

代碼截圖如下:

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.