Springboot任務之異步任務的使用詳解

02: 定時任務

03: 郵件任務

一、SpringBoot–異步任務

 1.1 什麼是同步和異步

  • 同步是阻塞模式,異步是非阻塞模式。
  • 同步就是指一個進程在執行某個請求的時候,若該請求需要一段時間才能返回信息,那麼這個進程將會—直等待下去,知道收到返回信息才繼續執行下去
  • 異步是指進程不需要一直等下去,而是繼續執行下面的操作,不管其他進程的狀態。當有消息返回式系統會通知進程進行處理,這樣可以提高執行的效率。

1.2 Java模擬一個異步請求(線程休眠)

在這裡插入圖片描述

AsyncService.java

package com.tian.asyncdemo.service;

import org.springframework.stereotype.Service;

@Service
public class AsyncService {
    public void hello() {
        try {
            System.out.println("數據正在處理");
            Thread.sleep(3000);
            System.out.println("數據處理完成");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

在這裡插入圖片描述

AsyncController.java

package com.tian.asyncdemo.controller;

import com.tian.asyncdemo.service.AsyncService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * ClassName: AsyncController
 * Description:
 *
 * @author Administrator
 * @date 2021/6/6 19:48
 */
@RestController
public class AsyncController {
    @Autowired
    AsyncService asyncService;

    @RequestMapping("/hello")
    public String hello() {
        asyncService.hello();
        return "OK";
    }
}

運行結果:

在這裡插入圖片描述

1.3 使用異步

在Service的方法中使用@Async說這是一個異步方法,並在主入口上使用@EnableAsync開啟異步支持

在這裡插入圖片描述

AsyncService.java

@Service
public class AsyncService {
    @Async
    public void hello() {
        try {
            System.out.println("數據正在處理");
            Thread.sleep(3000);
            System.out.println("數據處理完成");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

主入口上使用@EnableAsync開啟異步支持

在這裡插入圖片描述

再次測試:

在這裡插入圖片描述

到此這篇關於Springboot任務之異步任務的使用詳解的文章就介紹到這瞭,更多相關SpringBoot異步任務內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: