当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:14:00  来源:本站整理

Spring+Quartz按时任务[Java编程]

赞助商链接



  本文“Spring+Quartz按时任务[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

近来研究站内搜索,因为要按时的更新索引库,看了看Spring+Quartz按时任务,用它完成,按时成立索引的任务!!

给大家分享一下helloworld的简单例子,大家可以按照实际情形改变利用

业务办法类

Java代码

package com.task;

/**
  * 业务办法
  *
  */
public class TestJob {
  public void execute() {
  try {
   System.out.println("我的业务办法被调用了---------!");
  } catch (Exception ex) {
   ex.printStackTrace();
  }
  }
}

配置文件beans.xml

Java代码

<?xml version="1.0" encoding="UTF-8"?>
<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:context="http://www.springframework.org/schema/context"
  xmlns:tx="http://www.springframework.org/schema/tx"
  xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-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/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
  <!-- 普通的业务Bean -->
  <bean id="testJob" class="com.task.TestJob" />
  <!-- 触发器 -->
  <bean
  class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
  <property name="triggers">
   <list>
   <ref bean="testTrigger" />
   </list>
  </property>
  <property name="autoStartup" value="true" />
  </bean>
  <bean id="testTrigger"
  class="org.springframework.scheduling.quartz.CronTriggerBean">
  <property name="jobDetail" ref="testJobDetail" />
  <!-- 每隔1秒钟触发一次 -->
  <property name="cronExpression" value="*/1 * * * * ?" />
  </bean>
  <!-- 筹划 -->
  <bean id="testJobDetail"
  class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
  <property name="targetObject" ref="testJob" />
  <property name="targetMethod" value="execute" />
  <!-- 能否答应任务并发履行.当值为false时,表示必须等到前一个线程处理完毕后才再启一个新的线程 -->
  <property name="concurrent" value="false" />
  </bean>
</beans>


  以上是“Spring+Quartz按时任务[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:

  • 在Ubuntu管理iPhone/iPod SpringBoard图标
  • Visual C++ sprintf()函数用法
  • 发扬EJB、Spring思惟将组件化举行到底
  • spring在MVC层办理JPA的缓迟加载问题
  • 用spring简单实现发送邮件
  • 用Spring framework实现按时器功效
  • 关于Struts和Spring两种MVC框架的比较
  • Spring自动装配的学习
  • Spring事件配置的五种办法
  • Spring编程入门十大问题解答
  • Hibernate+Spring+Struts扩大Struts
  • J2EE新手入门之"Spring"名词注释
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .