Spring定时任务Job定时器

本文介绍如何使用Spring框架配置定时任务,通过在applicationContext.xml中加入task注解扫描,实现对带有@Scheduled注解的方法进行调度。同时介绍了配置过程中可能遇到的问题及解决方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

基于注解配置Spring定时任务
环境: Spring+SpringMVC+Hibernate

applicationContext.xml加上task注解扫描

开启下面配置,spring才能识别@Scheduled注解

<task:annotation-driven scheduler="qbScheduler" mode="proxy" />
<task:scheduler id="qbScheduler" pool-size="10" />

如果不能识别 task 标签 则需要在头部加入约束

http://www.springframework.org/schema/task 
http://www.springframework.org/schema/task/spring-task.xsd

准备任务完成

在需要的类方法上加入注解@Scheduled

@Component
public class MyJob {

    @Scheduled&#40;cron = "0/1 * * * * ?"&#41;
    public void execute  {
        System.out.println "Spring XML 配置 - MyJob";
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值