如何在spring中配置定时任务

 我来答
楼之风太泪视1V
推荐于2016-11-05 · 超过45用户采纳过TA的回答
知道小有建树答主
回答量:85
采纳率:0%
帮助的人:76.3万
展开全部

在spring 中 基于注解的 定时配置很简单,只需要三步哦,如下:

1、在类名前加@Component注解,标记该bean,也就是配置扫描标记。

2、在该类下的方法前加定是配置注解,@Schedule("cron= 0/30 * * * * *")。

3、添加配置文件(如下)。

实例如下:

1、class源文件。

package com.iss.ole.cggl.quartz;

import org.springframework.scheduling.annotation.Scheduled;

/** 
 * @function 订单计算 定时任务
 *  1、试制订单定时计算
 *  a、车型拆分成零件需求
 *  b、需求生成订单明细
 *  2、试装订单定时计算
 *  3、工闹蠢料废订单定时计算
 * @author zhoujian
 * @date 2014/10/29
 */
@Component
public class Quartz extends BaseBiz{

/** 车型拆分 成零件 BIZ*/
private PlanManagerBiz planManagerBiz;

/** 车型拆分为毛需求 */
@Scheduled(cron="0 0 06 * * ? ") 
public void convertVehicleToParts() {
try {
planManagerBiz.createPartsList();
} catch (BaseException e) {
logger.error("");
e.printStackTrace();
}
}

public PlanManagerBiz getPlanManagerBiz() {
return planManagerBiz;
}

public void setPlanManagerBiz(PlanManagerBiz planManagerBiz) {
this.planManagerBiz = planManagerBiz;
}
}

2、配置文件

<?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:context="http://www.springframework.org/schema/context"
       xmlns:p="http://www.springframework.org/schema/p"  
       xmlns:task="http://www.springframework.org/schema/task"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:aop="http://www.springframework.org/schema/aop" 
       xsi:schemaLocation="http://www.springframework.org/schema/beans  
       行冲http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/context 
       http://www.springframework.org/schema/context/spring-context-3.0.xsd
       http://www.springframework.org/schema/tx 
       液带陪http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
       http://www.springframework.org/schema/task
       http://www.springframework.org/schema/task/spring-task-3.0.xsd    
       http://www.springframework.org/schema/aop                      
       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd      
       "> 
        
        <!-- 扫描有相关标记的bean,初始化,交给spring管理-->
<context:component-scan base-package="com.iss.ole.cggl.quartz" /> 

<!-- 注入属性-->
<bean id="quartz" class="com.iss.ole.cggl.quartz.Quartz">
<property name="planManagerBiz">
<ref bean="planManagerBiz"/>
</property>
</bean>
</beans>

当然,你也可以把定时设置配置到配置文件中,不过没有注解来的快。思路是一样的哦。

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式