spring4 mvc 定时任务

本文介绍了如何在Spring框架中配置并实现定时任务。通过添加特定的命名空间和使用注解,可以轻松地定义每十分钟执行一次的任务。文章强调了定时任务组件不应使用lazy初始化。

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

注意:定时任务的组件(类)一定不要lazy init,可以在配置文件中加default-lazy-init="false",或者在执行的组件上家注解@Lazy(false)

1.配置文件


先添加命名空间
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:task="http://www.springframework.org/schema/task"
         xsi:schemaLocation="http://www.springframework.org/schema/task     
         http://www.springframework.org/schema/task/spring-task-4.0.xsd">
   
 <!-- here is a right place for such configuration
        -->
  <task:annotation-driven executor="myExecutor" scheduler="myScheduler"/>
  <task:executor  id="myExecutor"  pool-size="5"/>
  <task:scheduler id="myScheduler" pool-size="10"/>

2.要执行的组件(类)

@Service
@Lazy(false)
public class PrintSchedule {

    private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");

//    @Scheduled(cron = "0-59 * * * * *")//每秒执行一次
    @Scheduled(cron = "0 */10 * * * *")//每十分钟执行一次
    public void reportCurrentTime() {
        System.out.println("The time is now " + dateFormat.format(new Date()));
    }
      
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值