Spring 的@Scheduled注解实现定时任务执行和调度

首先要配置我们的spring.xml   ---  即spring的主配置文件(有的项目中叫做applicationContext.xml或context.xml)

xmlns 多加下面的内容、

[html] view
plain
copy

  1. xmlns:task="http://www.springframework.org/schema/task"

然后xsi:schemaLocation多加下面的内容、

[html] view
plain
copy

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

最后是我们的task任务扫描注解

[html] view
plain
copy

  1. <task:annotation-driven/>

我的配置扫描位置是:

[html] view
plain
copy

  1. <context:annotation-config/>
  2. <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>
  3. <context:component-scan base-package="com.test"/>

扫描的是com.test这样的包下的内容、

下面需要接口和实现(我的这几个java文件都是com.test的包下的、)

[java] view
plain
copy

  1. public interface IMyTestService {
  2. public void myTest();
  3. }

[java] view
plain
copy

  1. @Component  //import org.springframework.stereotype.Component;
  2. public class MyTestServiceImpl  implements IMyTestService {
  3. @Scheduled(cron="0/5 * *  * * ? ")   //每5秒执行一次
  4. @Override
  5. public void myTest(){
  6. System.out.println("进入测试");
  7. }
  8. }

执行后控制台就会打印出   进入测试   了

需要注意的几点:

1、spring的@Scheduled注解  需要写在实现上、

2、 定时器的任务方法不能有返回值(如果有返回值,spring初始化的时候会告诉你有个错误、需要设定一个proxytargetclass的某个值为true、具体就去百度google吧)

3、实现类上要有组件的注解@Component

剩下的就是corn表达式了、具体使用以及参数请百度google、

下面只例出几个式子

CRON表达式    含义

"0 0 12 * * ?"    每天中午十二点触发

"0 15 10 ? * *"    每天早上10:15触发

"0 15 10 * * ?"    每天早上10:15触发

"0 15 10 * * ? *"    每天早上10:15触发

"0 15 10 * * ? 2005"    2005年的每天早上10:15触发

"0 * 14 * * ?"    每天从下午2点开始到2点59分每分钟一次触发

"0 0/5 14 * * ?"    每天从下午2点开始到2:55分结束每5分钟一次触发

"0 0/5 14,18 * * ?"    每天的下午2点至2:55和6点至6点55分两个时间段内每5分钟一次触发

"0 0-5 14 * * ?"    每天14:00至14:05每分钟一次触发

"0 10,44 14 ? 3 WED"    三月的每周三的14:10和14:44触发

"0 15 10 ? * MON-FRI"    每个周一、周二、周三、周四、周五的10:15触发

实例展示

Spring主配置文件:context-globle.xml

xmlns 多加下面的内容、

[html] view
plain
copy

  1. xmlns:task="http://www.springframework.org/schema/task"

然后xsi:schemaLocation多加下面的内容、

[html] view
plain
copy

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

最后是我们的task任务扫描注解

[html] view
plain
copy

  1. <task:annotation-driven/>

定时任务类:TimoutUrlJob  ---- 定时向指定url发送Http  Get请求

@Component
public class TimoutUrlJob {
@Autowired
private CaptchaTimeoutUrlService captchaTimeoutUrlService;

@Scheduled(cron="0/5 * *  * * ? ")   //每5秒执行一次
public void test(){
System.out.println("aaaa");
List<CaptchaTimeoutUrl> list = captchaTimeoutUrlService.getTimeoutUrl();

System.out.println(list);
for(CaptchaTimeoutUrl captchaTimeoutUrl:list){
try {
//使用Java代码请求反馈路径,并返回reqId和result结果
String backInfo = HttpRequestUtils.httpRequestGet(captchaTimeoutUrl.getUrl());
if(null==backInfo||backInfo==""){
HttpRequestUtils.httpRequestGet(captchaTimeoutUrl.getUrl());
captchaTimeoutUrlService.updateTimeputUrl(captchaTimeoutUrl);
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
}

发送Get请求的工具类 :

public class HttpRequestUtils {
private static final String POST_URL="http://localhost:8088/services/xxx/xxx/get.htm";
public static void main(String[] args) {
try {
httpRequestGet(POST_URL);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
     * http get 请求
     * @param urlStr 请求URL地址
     * @throws Exception
     */
public static  String httpRequestGet(String urlStr) throws Exception{
       //URL拼接,如:"http://www.baidu.com?name=HI,中国",这里对特殊字符进行了编码,不然会产生乱码
       URL url = new URL(urlStr);
       System.out.println("++++++++++++++++++++++++++++++++++++++++++++++++");
       System.out.println("进入回调方法!");
System.out.println(urlStr);
System.out.println("++++++++++++++++++++++++++++++++++++++++++++++++");
       //openConnection函数会根据URL的协议返回不同的URLConnection子类的对象
       //这里URL是一个http,因此实际返回的是HttpURLConnection
       HttpURLConnection httpConn = (HttpURLConnection)url.openConnection();  

       //进行连接,实际上request要在下一句的connection.getInputStream()函数中才会真正发到 服务器****待验证
       httpConn.connect();  

        // 取得输入流,并使用Reader读取
       BufferedReader reader = new BufferedReader(new InputStreamReader(httpConn.getInputStream()));  

       System.out.println("=========get request接收数据内容开始============");
       String lines;
       while ((lines = reader.readLine()) != null) {
           System.out.println(lines);
       }
       System.out.println(reader);
       reader.close();
       System.out.println("=========get request接收数据内容结束============");
       httpConn.disconnect();
       return lines;
   }
}

Spring 的@Scheduled注解实现定时任务执行和调度

时间: 2024-10-02 20:27:00

Spring 的@Scheduled注解实现定时任务执行和调度的相关文章

Spring 的@Scheduled注解实现定时任务运行和调度

首先要配置我们的spring.xml   ---  即spring的主配置文件(有的项目中叫做applicationContext.xml或context.xml) xmlns 多加以下的内容. [html] view plaincopy xmlns:task="http://www.springframework.org/schema/task" 然后xsi:schemaLocation多加以下的内容. [html] view plaincopy http://www.springf

使用spring @Scheduled注解运行定时任务、

曾经框架使用quartz框架运行定时调度问题. 老大说这配置太麻烦.每一个调度都须要多加在spring的配置中. 能不能降低配置的量从而提高开发效率. 近期看了看spring的 scheduled的使用注解的方式进行调度. 感觉非常方便.起码配置的东西少了非常多. 所以留下来以备忘了. 首先要配置我们的spring.xml xmlns 多加以下的内容. xmlns:task="http://www.springframework.org/schema/task" 然后xsi:schem

使用spring提供的@Scheduled注解创建定时任务

使用方法 操作非常简单,只要按如下几个步骤配置即可 1. 导入jar包或添加依赖,其实定时任务只需要spring-context即可,当然起服务还需要spring-web: 2. 编写定时任务类和方法,在方法上加@Scheduled注解,注意定时方法不能有返回值,如果采用包扫描方式注册bean,还需要在类上加组件注解: 3. 在spring容器中注册定时任务类: 4. 在spring配置文件中开启定时功能. 示例Demo maven依赖 <dependency> <groupId>

通过源码理解Spring中@Scheduled的实现原理并且实现调度任务动态装载

前提 最近的新项目和数据同步相关,有定时调度的需求.之前一直有使用过Quartz.XXL-Job.Easy Scheduler等调度框架,后来越发觉得这些框架太重量级了,于是想到了Spring内置的Scheduling模块.而原生的Scheduling模块只是内存态的调度模块,不支持任务的持久化或者配置(配置任务通过@Scheduled注解进行硬编码,不能抽离到类之外),因此考虑理解Scheduling模块的底层原理,并且基于此造一个简单的轮子,使之支持调度任务配置:通过配置文件或者JDBC数据

使用spring的@Scheduled注解执行定时任务,启动项目不输出警告

在applicationContext.xml中添加: 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"> <task:annotation-

Spring @Scheduled 服务器上定时任务执行两次

昨天写了一个定时任务,每五分钟执行一次. 通过日志观察总是执行两次,并且是两个线程执行的.刚开始以为是spring加载了两遍. 包括网上说web.xml 和spring 各加载了一遍,导致最后执行两次. 最后排查原来是tomcat配置问题 这是之前的配置 . 这是之后的配置. 修改后,只执行一次.

springboot 基于@Scheduled注解 实现定时任务

前言 使用SpringBoot创建定时任务非常简单,目前主要有以下三种创建方式: 一.基于注解(@Scheduled) 二.基于接口(SchedulingConfigurer) 前者相信大家都很熟悉,但是实际使用中我们往往想从数据库中读取指定时间来动态执行定时任务,这时候基于接口的定时任务就派上用场了. 三.基于注解设定多线程定时任务 一.静态:基于注解 1.创建定时器 使用SpringBoot基于注解来创建定时任务非常简单,只需几行代码便可完成. 代码如下: @Component @Confi

【Spring】@Scheduled注解cron详解

一个cron表达式有至少6个(也可能7个)有空格分隔的时间元素. 按顺序依次为      1  秒(0~59)      2  分钟(0~59)      3 小时(0~23)      4  天(0~31)      5 月(0~11)      6  星期(1~7 1=SUN 或 SUN,MON,TUE,WED,THU,FRI,SAT)      7.年份(1970-2099)      其中每个元素可以是一个值(如6),一个连续区间(9-12),一个间隔时间(8-18/4)(/表示每隔4小

使用spring @Scheduled注解执行定时任务

首先要配置我们的spring.xml xmlns 多加下面的内容 1 xmlns:task="http://www.springframework.org/schema/task" 然后xsi:schemaLocation多加下面的内容 1 http://www.springframework.org/schema/task 2 http://www.springframework.org/schema/task/spring-task-3.1.xsd 最后是我们的task任务扫描注解