Spring通过注解方式实现定时任务

Posted 戒急静心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring通过注解方式实现定时任务相关的知识,希望对你有一定的参考价值。

XML配置:

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans xmlns="http://www.springframework.org/schema/beans" 
 3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4      xmlns:context="http://www.springframework.org/schema/context"  
 5     xmlns:task="http://www.springframework.org/schema/task" 
 6     xsi:schemaLocation="
 7         http://www.springframework.org/schema/beans 
 8         http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
 9         http://www.springframework.org/schema/context 
10         http://www.springframework.org/schema/context/spring-context-3.2.xsd 
11         http://www.springframework.org/schema/task 
12         http://www.springframework.org/schema/task/spring-task-3.2.xsd ">
13     <!-- 扫描包基础目录 -->
14     <context:component-scan base-package="com.wisezone" />
15     <!-- 识别@Scheduled注解 -->
16     <task:annotation-driven/>  
17     
18 </beans>

java代码:

 1 package com.wisezone.service;
 2 
 3 import java.text.SimpleDateFormat;
 4 import java.util.Date;
 5 
 6 import org.springframework.scheduling.annotation.Scheduled;
 7 import org.springframework.stereotype.Service;
 8 
 9 @Service
10 public class JobService {
11     
12     @Scheduled(cron="0/2 * * * * ?")
13     public void job(){
14         System.out.println("定时输出任务:"+new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date()));
15     }
16 }

测试类:

 1 package com.wisezone.test;
 2 
 3 import org.springframework.context.ApplicationContext;
 4 import org.springframework.context.support.ClassPathXmlApplicationContext;
 5 
 6 public class Test
 7 {
 8     public static void main(String[] args)
 9     {
10         ApplicationContext app = new ClassPathXmlApplicationContext("beans.xml");
11         
12     }
13 } 

结果:

 

以上是关于Spring通过注解方式实现定时任务的主要内容,如果未能解决你的问题,请参考以下文章

Spring注解定时任务,线程池问题

spring定时任务的注解实现方式

「spring」定时任务(纯注解方式)

Spring Boot 定时任务,怎么实现任务动态增删启停?

使用Spring定时任务并且通过AOP监控任务执行情况

Spring Boot 定时任务,怎么实现任务动态增删启停?