我是靠谱客的博主 热心鼠标,最近开发中收集的这篇文章主要介绍spring定时任务的用法(可以用)一、XML配置文件方式二、注解的方式三、Java测试程序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Spring Task,可以将它比作一个轻量级的Quartz,而且使用起来很简单,除spring相关的包外不需要额外的包,而且支持注解和配置文件两种.

一、XML配置文件方式

编写作业类

就是即普通的Java类,如下, 

  •  定时任务1
import java.text.SimpleDateFormat;
import java.util.Date;
public class TaskJob {
//定时执行代码块
public void myMethod() {
System.out.println((new SimpleDateFormat("yyyy-MM-dd hh:mm:ss")).format(new Date())+ " 我是后台任务1...");
}
}
  • 定时任务2
import java.text.SimpleDateFormat;
import java.util.Date;
public class TaskJob2 {
//定时任务代码块
public void myMethod() {
System.out.println((new SimpleDateFormat("yyyy-MM-dd hh:mm:ss")).format(new Date())+ " 我是后台任务2...");
}
}

在spring配置文件头中添加命名空间及描述

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:task="http://www.springframework.org/schema/task" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.0.xsd
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">
</beans>

 spring配置文件中设置具体的任务(与上面代码是在同一个xml中)

<!-- 定时任务要执行的方法 -->
<bean id="taskJob" class="com.task.TaskJob" />
<bean id="taskJob2" class="com.task.TaskJob2" />
<!--用于定时任务的执行 -->
<task:scheduled-tasks>
<!-- 指定要运行的类的方法,每2秒执行一次 -->
<task:scheduled ref="taskJob" method="myMethod" cron=" 0/2 * * * * ?" />
<!-- 指定要运行的类的方法,每3秒执行一次 -->
<task:scheduled ref="taskJob2" method="myMethod" cron=" 0/3 * * * * ?" />
</task:scheduled-tasks>

二、注解的方式

注解@Scheduled的定义

@Target({java.lang.annotation.ElementType.METHOD,java.lang.annotation.ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Scheduled
{
public abstract String cron();
public abstract long fixedDelay();
public abstract long fixedRate();
} 

可以看出该注解有三个方法或者叫参数,分别表示的意思是: 
* cron:指定cron表达式 
* fixedDelay:官方文档解释:An interval-based trigger where the interval is measured from the completion time of the previous task. The time unit value is measured in milliseconds.即表示从上一个任务完成开始到下一个任务开始的间隔,单位是毫秒。 
* fixedRate:官方文档解释:An interval-based trigger where the interval is measured from the start time of the previous task. The time unit value is measured in milliseconds.即从上一个任务开始到下一个任务开始的间隔,单位是毫秒。

编写pojo
 

import java.util.Date;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component("taskJob")
public class TaskJob {
@Scheduled(cron = " 0/2 * * * * ?") // 每两秒执行一次
public void myMethod() {
System.out.println(new Date().toLocaleString() + " 我是基于注解的后台任务...");
}
}

添加task相关的配置:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:task="http://www.springframework.org/schema/task" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.0.xsd
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">
<context:annotation-config />
<!-- spring扫描注解的配置 -->
<context:component-scan base-package="com.antation" />
<!-- 开启这个配置,spring才能识别@Scheduled注解 -->
<task:annotation-driven scheduler="qbScheduler" mode="proxy" />
<task:scheduler id="qbScheduler" pool-size="10" />
</beans>

 

说明:理论上只需要加上这句配置就可以了,这些参数都不是必须的。

三、Java测试程序

import org.springframework.context.support.ClassPathXmlApplicationContext;
public class AnnationTaskTest {
public static void main(String[] args) {
ClassPathXmlApplicationContext appContext = new ClassPathXmlApplicationContext("applicationContext-task.xml");
//try catch可以不写
try {
Thread.sleep(Integer.MAX_VALUE);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}

运行结果

2018-10-18 10:48:50 我是后台任务1...
2018-10-18 10:48:51 我是后台任务2...
2018-10-18 10:48:52 我是后台任务1...
2018-10-18 10:48:54 我是后台任务2...
2018-10-18 10:48:54 我是后台任务1...
2018-10-18 10:48:56 我是后台任务1...
2018-10-18 10:48:57 我是后台任务2...
2018-10-18 10:48:58 我是后台任务1...

原文链接:https://blog.csdn.net/zbw18297786698/article/details/73438014

注意:以上只需要Spring的jar包和3个必须jar包,方可运行(网上下载即可)

最后

以上就是热心鼠标为你收集整理的spring定时任务的用法(可以用)一、XML配置文件方式二、注解的方式三、Java测试程序的全部内容,希望文章能够帮你解决spring定时任务的用法(可以用)一、XML配置文件方式二、注解的方式三、Java测试程序所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部