zoukankan      html  css  js  c++  java
  • spring定时器

    applicationContext-timer.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:osgi="http://www.springframework.org/schema/osgi"
    xmlns:esb="http://mule.mulesource.org/schema/esb"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/osgi http://www.springframework.org/schema/osgi/spring-osgi.xsd
    http://mule.mulesource.org/schema/esb http://mule.mulesource.org/schema/esb.xsd">

    <bean id="waybillTimerTask" class="com.golden.ex.ts.timer.WaybillTimerTask" />
    <bean id="scheduleWaybillTimerTask" class="org.springframework.scheduling.timer.ScheduledTimerTask">
    <property name="delay" value="60000" />
    <property name="period" value="60000"/>
    <property name="timerTask" ref="waybillTimerTask" />
    </bean>

    <bean id="timerFactory" class="org.springframework.scheduling.timer.TimerFactoryBean">
    <property name="scheduledTimerTasks">
    <list>
    <ref bean="scheduleWaybillTimerTask"/>
    <ref bean="scheduleWaybillViewTimerTask" />
    </list>
    </property>
    </bean>

    WaybillTimerTask .java

    @Override
    public void run() {
    try {
    // 接单处理定时器
    confirm();//方法名
    } catch (Exception e) {
    logger.error("接单处理定时器异常:" + e.getMessage());
    }

    try {
    // 预约运单处理定时器
    appoint();//方法名
    } catch (Exception e) {
    logger.error("预约运单处理定时器异常:" + e.getMessage());
    }
    }

  • 相关阅读:
    ORACLE创建数据库时无法创建目录
    KindEditor:Ajax提交表单时获取不到HTML内容
    mysql重置root密码
    假设检验-单样本检验
    推论统计分析-如何避免偏见和抽样分布
    推论统计分析1
    共享单车数据分析
    Kaggle泰坦尼克号生存情况预测
    R-长尾词练习
    R期望
  • 原文地址:https://www.cnblogs.com/susuhyc/p/5704166.html
Copyright © 2011-2022 走看看