springBoot(9)---定時任務,異步任務

定時任務,異步任務

 

1、定時任務

 

一、步驟:

         1:在啓動類上寫@EnableScheduling註解java

         2:在要定時任務的類上寫@component web

         3:在要定時執行的方法上寫@Scheduled(fixedRate=毫秒數)。spring

 

二、示例

    主類api

@SpringBootApplication
@EnableScheduling //開啓定時任務
public class MainApplication {

    public static void main(String[] args) {
        SpringApplication.run(MainApplication.class, args);
    }
}

     定時任務類app

import java.util.Date;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component public class Jobs {
  
    //表示方法執行完成後5秒
    @Scheduled(fixedDelay=5000)
    public void fixedDelayJob() throws InterruptedException{  
        System.out.println("fixedDelay 每隔5秒"+new Date());
    }
    
    //表示每隔3秒
    @Scheduled(fixedRate=3000)
    public void fixedRateJob(){
        
        System.out.println("fixedRate 每隔3秒"+new Date());
    }

    //表示天天8時30分0秒執行
    @Scheduled(cron="0 0,30 0,8 ? * ? ")
public void cronJob(){ System.out.println(new Date()+" ...>>cron...."); } }

效果:異步

 

 3.總結

  1.fixedDelayfixedRate,單位是毫秒,這裏這裏就是5秒和3秒,它們的區別就是async

fixedRate就是每屢次分鐘一次,不論你業務執行花費了多少時間。我都是1分鐘執行1次,而fixedDelay是當任務執行完畢後1分鐘在執行。因此根據實際業務不一樣,咱們會選擇不一樣的方式。ui

  2.cron表達式:好比你要設置天天何時執行,就能夠用它spa

     cron表達式,有專門的語法,並且感受有點繞人,不過簡單來講,你們記住一些經常使用的用法便可,特殊的語法能夠單獨去查。
     cron一共有7位,可是最後一位是年,能夠留空,因此咱們能夠寫6位:3d

* 第一位,表示秒,取值0-59
* 第二位,表示分,取值0-59
* 第三位,表示小時,取值0-23
* 第四位,日期天/日,取值1-31
* 第五位,日期月份,取值1-12
* 第六位,星期,取值1-7,星期一,星期二...,注:不是第1周,第二週的意思
          另外:1表示星期天,2表示星期一。
* 第7爲,年份,能夠留空,取值1970-2099

     cron中,還有一些特殊的符號,含義以下:

(*)星號:能夠理解爲每的意思,每秒,每分,天天,每個月,每一年...
(?)問號:問號只能出如今日期和星期這兩個位置。
(-)減號:表達一個範圍,如在小時字段中使用「10-12」,則表示從10到12點,即10,11,12
(,)逗號:表達一個列表值,如在星期字段中使用「1,2,4」,則表示星期一,星期二,星期四
(/)斜槓:如:x/y,x是開始值,y是步長,好比在第一位(秒) 0/15就是,從0秒開始,每15秒,最後就是0,15,30,45,60    另:*/y,等同於0/y

      下面列舉幾個例子供你們來驗證:

0 0 3 * * ?     天天3點執行
0 5 3 * * ?     天天3點5分執行
0 5 3 ? * * 天天3點5分執行,與上面做用相同
0 5/10 3 * * ?  天天3點的 5分,15分,25分,35分,45分,55分這幾個時間點執行
0 10 3 ? * 1 每週星期天,3點10分 執行,注:1表示星期天    
0 10 3 ? * 1#3  每月的第三個星期,星期天 執行,#號只能出如今星期的位置

 

2、異步任務

   一、步驟

             1: 啓動類裏面使用@EnableAsync註解開啓功能,自動掃描

             2:在要異步任務的類上寫@component 

             3:在定義異步任務類寫@Async(寫在類上表明整個類都是異步,在方法加上表明該類異步執行)

 

  二、示例

   主類

@SpringBootApplication
@EnableAsync //開啓異步任務
public class MainApplication {

    public static void main(String[] args) {
        SpringApplication.run(MainApplication.class, args);
    }
}

  異步類

import java.util.concurrent.Future;

import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.AsyncResult;
import org.springframework.stereotype.Component;

/**
 * 功能描述:異步任務業務類
 */ @Component
@Async public class AsyncTask {
    

    //獲取異步結果
    public Future<String> task4() throws InterruptedException{
        long begin = System.currentTimeMillis();
        Thread.sleep(2000L);
        long end = System.currentTimeMillis();
        System.out.println("任務4耗時="+(end-begin));
        return new AsyncResult<String>("任務4");
    }
    
    
    public Future<String> task5() throws InterruptedException{
        long begin = System.currentTimeMillis();
        Thread.sleep(3000L);
        long end = System.currentTimeMillis();
        System.out.println("任務5耗時="+(end-begin));
        return new AsyncResult<String>("任務5");
    }
    
    public Future<String> task6() throws InterruptedException{
        long begin = System.currentTimeMillis();
        Thread.sleep(1000L);
        long end = System.currentTimeMillis();
        System.out.println("任務6耗時="+(end-begin));
        return new AsyncResult<String>("任務6");
    }
        
}

  controller類

import java.util.concurrent.Future;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.jincou.task.AsyncTask;
import com.jincou.util.JsonData;

@RestController
@RequestMapping("/api/v1")
public class UserController {
    
    @Autowired
    private AsyncTask task;
    
    @GetMapping("async_task")
    public JsonData exeTask() throws InterruptedException{
        
        long begin = System.currentTimeMillis();
        
        Future<String> task4 = task.task4();
        Future<String> task5 = task.task5();
        Future<String> task6 = task.task6();
        
        //若是都執行往就能夠跳出循環,isDone方法若是此任務完成,true
        for(;;){
            if (task4.isDone() && task5.isDone() && task6.isDone()) {
                break;
            }
        }
                
        long end = System.currentTimeMillis();    
        long total = end-begin;
        System.out.println("執行總耗時="+total);
        return JsonData.buildSuccess(total);
    }    
}

結果:

頁面:

後臺:

 

 三、總結

 從上面示例咱們能夠看出:若是同步方法,那咱們須要6秒,而異步執行,咱們只須要3秒左右,這就是異步的做用。

     1)要把異步任務封裝到類裏面,不能直接寫到Controller
     2)增長Future<String> 返回結果 AsyncResult<String>("task執行完成");
     3)若是須要拿到結果 須要判斷所有的 task.isDone()

 

 想太多,作太少,中間的落差就是煩惱。想沒有煩惱,要麼別想,要麼多作。上尉【10】

相關文章
相關標籤/搜索