Java實現非同步調用

来源:https://www.cnblogs.com/sword-successful/archive/2019/07/13/11181714.html
-Advertisement-
Play Games

一、創建線程 二、Future jdk8之前的實現方式,在JUC下增加了Future,從字面意思理解就是未來的意思,但使用起來卻著實有點雞肋,並不能實現真正意義上的非同步,獲取結果時需要阻塞線程,或者不斷輪詢。 三、CompletableFuture 使用原生的CompletableFuture實現異 ...


一、創建線程

 @Test
public void test0() throws Exception {
  System.out.println("main函數開始執行");
  Thread thread=new Thread(new Runnable() {
    @Override
    public void run() {
      System.out.println("===task start===");
      try {
        Thread.sleep(5000);
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
      System.out.println("===task finish===");
    }
  });

  thread.start();
  System.out.println("main函數執行結束");

}

二、Future

   jdk8之前的實現方式,在JUC下增加了Future,從字面意思理解就是未來的意思,但使用起來卻著實有點雞肋,並不能實現真正意義上的非同步,獲取結果時需要阻塞線程,或者不斷輪詢。

@Test
public void test1() throws Exception {

    System.out.println("main函數開始執行");

    ExecutorService executor = Executors.newFixedThreadPool(1);
    Future<Integer> future = executor.submit(new Callable<Integer>() {
        @Override
        public Integer call() throws Exception {

            System.out.println("===task start===");
            Thread.sleep(5000);
            System.out.println("===task finish===");
            return 3;
        }
    });
    //這裡需要返回值時會阻塞主線程,如果不需要返回值使用是OK的。倒也還能接收
    //Integer result=future.get();
    System.out.println("main函數執行結束");

    System.in.read();

}

三、CompletableFuture

     使用原生的CompletableFuture實現非同步操作,加上對lambda的支持,可以說實現非同步任務已經發揮到了極致。

 @Test
public void test2() throws Exception {
    System.out.println("main函數開始執行");
    ExecutorService executor = Executors.newFixedThreadPool(2);
    CompletableFuture<Integer> future = CompletableFuture.supplyAsync(new Supplier<Integer>() {
        @Override
        public Integer get() {
            System.out.println("===task start===");
            try {
                Thread.sleep(5000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("===task finish===");
            return 3;
        }
    }, executor);
    future.thenAccept(e -> System.out.println(e));
    System.out.println("main函數執行結束");
}

四、Spring的Async註解

        使用spring實現非同步需要開啟註解,可以使用xml方式或者java config的方式。

xml方式:

<task:annotation-driven executor="executor" />
<task:executor id="executor"
        pool-size="2" 線程池的大小
        queue-capacity="100" 排隊隊列長度 
        keep-alive="120" 線程保活時間(單位秒)
        rejection-policy="CALLER_RUNS" 對拒絕的任務處理策略 />

java方式:

@EnableAsync
public class MyConfig {

    @Bean
    public TaskExecutor executor(){
        ThreadPoolTaskExecutor executor=new ThreadPoolTaskExecutor();
        executor.setCorePoolSize(10); //核心線程數
        executor.setMaxPoolSize(20);  //最大線程數
        executor.setQueueCapacity(1000); //隊列大小
        executor.setKeepAliveSeconds(300); //線程最大空閑時間
        executor.setThreadNamePrefix("fsx-Executor-"); //指定用於新創建的線程名稱的首碼。
        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
        return executor;
    }
}

(1)@Async

@Test
public void test3() throws Exception {
    System.out.println("main函數開始執行");
    myService.longtime();
    System.out.println("main函數執行結束");
}

 @Async
public void longtime() {
    System.out.println("我在執行一項耗時任務");
    try {
        Thread.sleep(5000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
    System.out.println("完成");

}

(2)AsyncResult

     如果需要返回值,耗時方法返回值用AsyncResult包裝。

@Test
public void test4() throws Exception {
    System.out.println("main函數開始執行");
    Future<Integer> future=myService.longtime2();
    System.out.println("main函數執行結束");
    System.out.println("非同步執行結果:"+future.get());
}

 @Async
public Future<Integer> longtime2() {
    System.out.println("我在執行一項耗時任務");

    try {
        Thread.sleep(8000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

    System.out.println("完成");
    return new AsyncResult<>(3);
}


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 基於webpack4實踐:開始:打開控制面板,制定到創建Webpack的文件夾。 並創建初始配置文件package.json 輸入命令:npm init -y,在文件夾中出現一個package.json文件,並出現一個文件夾“node_modules” 接著就是安裝webpack 插件了,輸入命令: ...
  • 之乎者助得甚? 給定字元串$s$和序列$w$,試求 $$ \max_{1\le i using namespace std; const int N=1e5+10; int n,w[N],sa[N],ht[N],rc[N]; char s[N]; void buildSa() { static in ...
  • 題目 "P1018 乘積最大 " 解析 區間DP 設$f[i][j]$表示選$i$個數,插入$j$個乘號時的最大值 設$num[i][j]$是$s[i,j]$里的數字 轉移方程就是$f[i][k] = max(f[i][k], f[j][k 1] num[j + 1][i])$ $i$為當前區間長度 ...
  • 目錄: 1.1 Java特點 1.2 Java程式運行機制 1.3 安裝JDl和配置環境變數 1.4 第一個JAVA程式 1.5 第一個JAVA程式的含義 前言 Java語言歷時近二十年,已發展成為人類電腦歷史上影響深遠的編程語言,從某種程度上來看,它甚至超出了編程語言的範疇,成為一種開發平臺,一 ...
  • virtualenv簡介 含義: virtual:虛擬,env:environment環境的簡寫,所以virtualenv就是虛擬環境,顧名思義,就是虛擬出來的一個新環境,比如我們使用的虛擬機、docker,它們都是把一部分的內容獨立出來,這部分獨立的內容相當於一個容器,在這個容器只呢個,我們可以“ ...
  • python幫組文檔 class int(x, base=10) Return an integer object constructed from a number or string x, or return 0 if no arguments are given. If x defines _ ...
  • 從資料庫中讀取數據 在 "http://sqlitebrowser.org/" 下載sqlite3可視化工具,在本main.go同目錄下創建 資料庫,創建表如下: 將數據插入資料庫 ...
  • Linked Url:https://leetcode.com/problems/single-number/ Given a non-empty array of integers, every element appears twice except for one. Find that sin ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...