透過閱讀本篇文章你將瞭解到:CompletableFuture的使用

vbcjnmkk發表於2024-09-01

透過閱讀本篇文章你將瞭解到:

CompletableFuture的使用
CompletableFure非同步和同步的效能測試
已經有了Future為什麼仍需要在JDK1.8中引入CompletableFuture
CompletableFuture的應用場景
對CompletableFuture的使用最佳化
場景說明
查詢所有商店某個商品的價格並返回,並且查詢商店某個商品的價格的API為同步 一個Shop類,提供一個名為getPrice的同步方法

店鋪類:Shop.java
public class Shop {
private Random random = new Random();
/**
* 根據產品名查詢價格
* */
public double getPrice(String product) {
return calculatePrice(product);
}

/**
 * 計算價格
 *
 * @param product
 * @return
 * */
private double calculatePrice(String product) {
    delay();
    //random.nextDouble()隨機返回折扣
    return random.nextDouble() * product.charAt(0) + product.charAt(1);
}

/**
 * 透過睡眠模擬其他耗時操作
 * */
private void delay() {
    try {
        Thread.sleep(1000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
}

}
查詢商品的價格為同步方法,並透過sleep方法模擬其他操作。這個場景模擬了當需要呼叫第三方API,但第三方提供的是同步API,在無法修改第三方API時如何設計程式碼呼叫提高應用的效能和吞吐量,這時候可以使用CompletableFuture類。

推薦一個開源免費的 Spring Boot 實戰專案:

https://github.com/javastacks/spring-boot-best-practice

CompletableFuture使用
Completable是Future介面的實現類,在JDK1.8中引入

CompletableFuture的建立:

說明:

兩個過載方法之間的區別 => 後者可以傳入自定義Executor,前者是預設的,使用的ForkJoinPool

supplyAsync和runAsync方法之間的區別 => 前者有返回值,後者無返回值

Supplier是函式式介面,因此該方法需要傳入該介面的實現類,追蹤原始碼會發現在run方法中會呼叫該介面的方法。因此使用該方法建立CompletableFuture物件只需重寫Supplier中的get方法,在get方法中定義任務即可。又因為函式式介面可以使用Lambda表示式,和new建立CompletableFuture物件相比程式碼會簡潔不少

使用new方法

CompletableFuture futurePrice = new CompletableFuture<>();
使用CompletableFuture#completedFuture靜態方法建立

public static CompletableFuture completedFuture(U value) {
return new CompletableFuture((value == null) ? NIL : value);
}
引數的值為任務執行完的結果,一般該方法在實際應用中較少應用

使用 CompletableFuture#supplyAsync靜態方法建立 supplyAsync有兩個過載方法:

//方法一
public static CompletableFuture supplyAsync(Supplier supplier) {
return asyncSupplyStage(asyncPool, supplier);
}
//方法二
public static CompletableFuture supplyAsync(Supplier supplier,
Executor executor) {
return asyncSupplyStage(screenExecutor(executor), supplier);
}
使用CompletableFuture#runAsync靜態方法建立 runAsync有兩個過載方法

//方法一
public static CompletableFuture runAsync(Runnable runnable) {
return asyncRunStage(asyncPool, runnable);
}
//方法二
public static CompletableFuture runAsync(Runnable runnable, Executor executor) {
return asyncRunStage(screenExecutor(executor), runnable);
}
結果的獲取: 對於結果的獲取CompltableFuture類提供了四種方式

//方式一
public T get()
//方式二
public T get(long timeout, TimeUnit unit)
//方式三
public T getNow(T valueIfAbsent)
//方式四
public T join()
說明:

示例:

get()和get(long timeout, TimeUnit unit) => 在Future中就已經提供了,後者提供超時處理,如果在指定時間內未獲取結果將丟擲超時異常
getNow => 立即獲取結果不阻塞,結果計算已完成將返回結果或計算過程中的異常,如果未計算完成將返回設定的valueIfAbsent值
join => 方法裡不會丟擲異常
public class AcquireResultTest {
public static void main(String[] args) throws ExecutionException, InterruptedException {
//getNow方法測試
CompletableFuture cp1 = CompletableFuture.supplyAsync(() -> {
try {
Thread.sleep(60 * 1000 * 60 );
} catch (InterruptedException e) {
e.printStackTrace();
}

      return "hello world";
  });

  System.out.println(cp1.getNow("hello h2t"));

  //join方法測試
  CompletableFuture<Integer> cp2 = CompletableFuture.supplyAsync((()-> 1 / 0));
  System.out.println(cp2.join());

  //get方法測試
  CompletableFuture<Integer> cp3 = CompletableFuture.supplyAsync((()-> 1 / 0));
  System.out.println(cp3.get());

}
}
說明:

第一個執行結果為hello h2t,因為要先睡上1分鐘結果不能立即獲取
join方法獲取結果方法裡不會拋異常,但是執行結果會拋異常,丟擲的異常為CompletionException
get方法獲取結果方法裡將丟擲異常,執行結果丟擲的異常為ExecutionException
異常處理: 使用靜態方法建立的CompletableFuture物件無需顯示處理異常,使用new建立的物件需要呼叫completeExceptionally方法設定捕獲到的異常,舉例說明:
CompletableFuture completableFuture = new CompletableFuture();
new Thread(() -> {
try {
//doSomething,呼叫complete方法將其他方法的執行結果記錄在completableFuture物件中
completableFuture.complete(null);
} catch (Exception e) {
//異常處理
completableFuture.completeExceptionally(e);
}
}).start();
同步方法Pick非同步方法查詢所有店鋪某個商品價格
店鋪為一個列表:

private static List shopList = Arrays.asList(
new Shop("BestPrice"),
new Shop("LetsSaveBig"),
new Shop("MyFavoriteShop"),
new Shop("BuyItAll")
);
同步方法:

private static List findPriceSync(String product) {
return shopList.stream()
.map(shop -> String.format("%s price is %.2f",
shop.getName(), shop.getPrice(product))) //格式轉換
.collect(Collectors.toList());
}
非同步方法:

private static List findPriceAsync(String product) {
List<CompletableFuture> completableFutureList = shopList.stream()
//轉非同步執行
.map(shop -> CompletableFuture.supplyAsync(
() -> String.format("%s price is %.2f",
shop.getName(), shop.getPrice(product)))) //格式轉換
.collect(Collectors.toList());

return completableFutureList.stream()
        .map(CompletableFuture::join)  //獲取結果不會丟擲異常
        .collect(Collectors.toList());

}
效能測試結果:

Find Price Sync Done in 4141
Find Price Async Done in 1033
非同步執行效率提高四倍

為什麼仍需要CompletableFuture
在JDK1.8以前,透過呼叫執行緒池的submit方法可以讓任務以非同步的方式執行,該方法會返回一個Future物件,透過呼叫get方法獲取非同步執行的結果:

private static List findPriceFutureAsync(String product) {
ExecutorService es = Executors.newCachedThreadPool();
List<Future> futureList = shopList.stream().map(shop -> es.submit(() -> String.format("%s price is %.2f",
shop.getName(), shop.getPrice(product)))).collect(Collectors.toList());

return futureList.stream()
        .map(f -> {
            String result = null;
            try {
                result = f.get();
            } catch (InterruptedException e) {
                e.printStackTrace();
            } catch (ExecutionException e) {
                e.printStackTrace();
            }

            return result;
        }).collect(Collectors.toList());

}
既生瑜何生亮,為什麼仍需要引入CompletableFuture?對於簡單的業務場景使用Future完全沒有,但是想將多個非同步任務的計算結果組合起來,後一個非同步任務的計算結果需要前一個非同步任務的值等等,使用Future提供的那點API就囊中羞澀,處理起來不夠優雅,這時候還是讓CompletableFuture以宣告式的方式優雅的處理這些需求。而且在Future程式設計中想要拿到Future的值然後拿這個值去做後續的計算任務,只能透過輪詢的方式去判斷任務是否完成這樣非常佔CPU並且程式碼也不優雅,用虛擬碼表示如下:

while(future.isDone()) {
result = future.get();
doSomrthingWithResult(result);
}
但CompletableFuture提供了API幫助我們實現這樣的需求

其他API介紹
whenComplete計算結果的處理:
對前面計算結果進行處理,無法返回新值 提供了三個方法:

//方法一
public CompletableFuture whenComplete(BiConsumer<? super T,? super Throwable> action)
//方法二
public CompletableFuture whenCompleteAsync(BiConsumer<? super T,? super Throwable> action)
//方法三
public CompletableFuture whenCompleteAsync(BiConsumer<? super T,? super Throwable> action, Executor executor)
說明:

BiFunction<? super T,? super U,? extends V> fn引數 => 定義對結果的處理
Executor executor引數 => 自定義執行緒池
以async結尾的方法將會在一個新的執行緒中執行組合操作
示例:

public class WhenCompleteTest {
public static void main(String[] args) {
CompletableFuture cf1 = CompletableFuture.supplyAsync(() -> "hello");
CompletableFuture cf2 = cf1.whenComplete((v, e) ->
System.out.println(String.format("value:%s, exception:%s", v, e)));
System.out.println(cf2.join());
}
}
thenApply轉換:
將前面計算結果的的CompletableFuture傳遞給thenApply,返回thenApply處理後的結果。可以認為透過thenApply方法實現CompletableFuture至CompletableFuture的轉換。白話一點就是將CompletableFuture的計算結果作為thenApply方法的引數,返回thenApply方法處理後的結果 提供了三個方法:

//方法一
public CompletableFuture thenApply(
Function<? super T,? extends U> fn) {
return uniApplyStage(null, fn);
}

//方法二
public CompletableFuture thenApplyAsync(
Function<? super T,? extends U> fn) {
return uniApplyStage(asyncPool, fn);
}

//方法三
public CompletableFuture thenApplyAsync(
Function<? super T,? extends U> fn, Executor executor) {
return uniApplyStage(screenExecutor(executor), fn);
}
說明:

Function<? super T,? extends U> fn引數 => 對前一個CompletableFuture 計算結果的轉化操作
Executor executor引數 => 自定義執行緒池
以async結尾的方法將會在一個新的執行緒中執行組合操作 示例:
public class ThenApplyTest {
public static void main(String[] args) throws ExecutionException, InterruptedException {
CompletableFuture result = CompletableFuture.supplyAsync(ThenApplyTest::randomInteger).thenApply((i) -> i * 8);
System.out.println(result.get());
}

public static Integer randomInteger() {
    return 10;
}

}
這裡將前一個CompletableFuture計算出來的結果擴大八倍

thenAccept結果處理:
thenApply也可以歸類為對結果的處理,thenAccept和thenApply的區別就是沒有返回值 提供了三個方法:

//方法一
public CompletableFuture thenAccept(Consumer<? super T> action) {
return uniAcceptStage(null, action);
}

//方法二
public CompletableFuture thenAcceptAsync(Consumer<? super T> action) {
return uniAcceptStage(asyncPool, action);
}

//方法三
public CompletableFuture thenAcceptAsync(Consumer<? super T> action,
Executor executor) {
return uniAcceptStage(screenExecutor(executor), action);
}
說明:

Consumer<? super T> action引數 => 對前一個CompletableFuture計算結果的操作
Executor executor引數 => 自定義執行緒池
同理以async結尾的方法將會在一個新的執行緒中執行組合操作 示例:
public class ThenAcceptTest {
public static void main(String[] args) {
CompletableFuture.supplyAsync(ThenAcceptTest::getList).thenAccept(strList -> strList.stream()
.forEach(m -> System.out.println(m)));
}

public static List<String> getList() {
    return Arrays.asList("a", "b", "c");
}

}
將前一個CompletableFuture計算出來的結果列印出來

thenCompose非同步結果流水化:
thenCompose方法可以將兩個非同步操作進行流水操作 提供了三個方法:

//方法一
public CompletableFuture thenCompose(
Function<? super T, ? extends CompletionStage> fn) {
return uniComposeStage(null, fn);
}

//方法二
public CompletableFuture thenComposeAsync(
Function<? super T, ? extends CompletionStage> fn) {
return uniComposeStage(asyncPool, fn);
}

//方法三
public CompletableFuture thenComposeAsync(
Function<? super T, ? extends CompletionStage> fn,
Executor executor) {
return uniComposeStage(screenExecutor(executor), fn);
}
說明:

Function<? super T, ? extends CompletionStage> fn引數 => 當前CompletableFuture計算結果的執行
Executor executor引數 => 自定義執行緒池
同理以async結尾的方法將會在一個新的執行緒中執行組合操作 示例:
public class ThenComposeTest {
public static void main(String[] args) throws ExecutionException, InterruptedException {
CompletableFuture result = CompletableFuture.supplyAsync(ThenComposeTest::getInteger)
.thenCompose(i -> CompletableFuture.supplyAsync(() -> i * 10));
System.out.println(result.get());
}

private static int getInteger() {
    return 666;
}

private static int expandValue(int num) {
    return num * 10;
}

}
執行流程圖:

thenCombine組合結果:
thenCombine方法將兩個無關的CompletableFuture組合起來,第二個Completable並不依賴第一個Completable的結果 提供了三個方法:

//方法一
public <U,V> CompletableFuture thenCombine(
CompletionStage<? extends U> other,
BiFunction<? super T,? super U,? extends V> fn) {
return biApplyStage(null, other, fn);
}
//方法二
public <U,V> CompletableFuture thenCombineAsync(
CompletionStage<? extends U> other,
BiFunction<? super T,? super U,? extends V> fn) {
return biApplyStage(asyncPool, other, fn);
}

//方法三
public <U,V> CompletableFuture thenCombineAsync(
CompletionStage<? extends U> other,
BiFunction<? super T,? super U,? extends V> fn, Executor executor) {
return biApplyStage(screenExecutor(executor), other, fn);
}
說明:

CompletionStage<? extends U> other引數 => 新的CompletableFuture的計算結果
BiFunction<? super T,? super U,? extends V> fn引數 => 定義了兩個CompletableFuture物件完成計算後如何合併結果,該引數是一個函式式介面,因此可以使用Lambda表示式
Executor executor引數 => 自定義執行緒池
同理以async結尾的方法將會在一個新的執行緒中執行組合操作
示例:

public class ThenCombineTest {
private static Random random = new Random();
public static void main(String[] args) throws ExecutionException, InterruptedException {
CompletableFuture result = CompletableFuture.supplyAsync(ThenCombineTest::randomInteger).thenCombine(
CompletableFuture.supplyAsync(ThenCombineTest::randomInteger), (i, j) -> i * j
);

    System.out.println(result.get());
}

public static Integer randomInteger() {
    return random.nextInt(100);
}

}
將兩個執行緒計算出來的值做一個乘法在返回 執行流程圖:

allOf&anyOf組合多個CompletableFuture:
方法介紹:

//allOf
public static CompletableFuture allOf(CompletableFuture... cfs) { return andTree(cfs, 0, cfs.length - 1); } //anyOf public static CompletableFuture

相關文章