Loading

SpringTask一:xml配置方式

一.pom.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>4.11</version>
  <scope>test</scope>
</dependency>
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-context</artifactId>
  <version>4.3.20.RELEASE</version>
</dependency>
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-web</artifactId>
  <version>4.3.20.RELEASE</version>
</dependency>

二.任务类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class TaskService {
 
    public void firstTask(){
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd-HH-mm:ss:ms");
        String format = simpleDateFormat.format(new Date());
        System.out.println("数据库备份时间1:"+format);
    }
 
    public void secondTask(){
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd-HH-mm:ss:ms");
        String format = simpleDateFormat.format(new Date());
        System.out.println("数据库备份时间2:"+format);
    }
}

三.applicationContext.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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:task="http://www.springframework.org/schema/task"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/task
        http://www.springframework.org/schema/task/spring-task.xsd">
    <bean id="taskService" class="com.wj.TaskService">
 
    </bean>
 
    <!--配置定时规则-->
    <task:scheduled-tasks>
        <!--initial-delay:服务器启动后多少毫秒开始执行定时任务-->
        <!--fixed-delay:每隔多少毫秒执行一次定时任务-->
        <!--cron:可以指定复杂定时任务,前文Quartz有介绍,不再叙述-->
        <task:scheduled ref="taskService" method="firstTask" initial-delay="10000" fixed-delay="2000"/>
        <task:scheduled ref="taskService" method="secondTask" initial-delay="20000" fixed-delay="4000"/>
    </task:scheduled-tasks>
 
</beans>

四.运行效果:

 

posted @   秋风飒飒吹  阅读(880)  评论(0编辑  收藏  举报
编辑推荐:
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
阅读排行:
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
点击右上角即可分享
微信分享提示