詳解springboot使用異步註解@Async獲取執行結果的坑
一、引言
在java後端開發中經常會碰到處理多個任務的情況,比如一個方法中要調用多個請求,然後把多個請求的結果合並後統一返回,一般情況下調用其他的請求一般都是同步的,也就是每個請求都是阻塞的,那麼這個處理時間必定是很長的,有沒有一種方法可以讓多個請求異步處理那,答案是有的。
springboot中提供瞭很便利的方式可以解決上面的問題,那就是異步註解@Async。正確的使用該註解可以使你的程序飛起,相反如果使用不當那麼並不會取到理想的效果。
二、獲取異步執行結果
1、環境介紹
下面是我的controller,SyncController.java
package com.atssg.controller; import com.atssg.service.MySyncService; import lombok.extern.slf4j.Slf4j; 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; @Slf4j @RestController @RequestMapping("/sync") public class SyncController { @Autowired private MySyncService syncService; @GetMapping(value = "/test") public String test() { String str=null; try { log.info("start"); str = syncService.asyncMethod(); log.info("str:{}", str); return str; } catch (Exception e) { e.printStackTrace(); } return str; } }
在controller中就是調用下層的方法並返回,再看service層的類MySyncService.java
package com.atssg.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.concurrent.ExecutionException; import java.util.concurrent.Future; @Service public class MySyncService { @Autowired private SyncService syncService; /** * 異步方法 * * @return * @throws InterruptedException * @throws ExecutionException */ public String asyncMethod() throws InterruptedException, ExecutionException { Future<String> result1 = syncService.method1("I"); Future<String> result2 = syncService.method2("love"); Future<String> result3 = syncService.method3("async"); String str = result1.get(); String str2 = result2.get(); String str3 = result3.get(); String result = str + str2 + str3; return result; } /** * 同步方法 * * @return * @throws InterruptedException * @throws ExecutionException */ public String syncMethod() throws InterruptedException, ExecutionException { /*同步寫法*/ String str = syncService.method1("I").get(); String str2 = syncService.method2("love").get(); String str3 = syncService.method3("async").get(); return str + str2 + str3; } }
上面便是service類,僅僅是調用下次異步層的方法,並取得返回值。上面類中有兩個方法,其寫法也類似但結果卻大不相同,後面詳說。
下面是異步層的方法,SyncService.java
package com.atssg.service; import org.springframework.scheduling.annotation.Async; import org.springframework.scheduling.annotation.AsyncResult; import org.springframework.stereotype.Service; import java.util.concurrent.Future; @Service @Async public class SyncService { //@Async public Future<String> method1(String str) throws InterruptedException { Thread.sleep(1000*10); return new AsyncResult<>( str); } //@Async public Future<String> method2(String str) throws InterruptedException { Thread.sleep(1000*5); return new AsyncResult<>(str); } // @Async public Future<String> method3(String str) throws InterruptedException { Thread.sleep(1000*15); return new AsyncResult<>(str); } }
該類使用@Async註解,表明該類中所有的方法都是異步執行的,其中@Async可修飾類也可以修飾方法。
這便是所有的環境。
2、錯誤的方式
在MySyncService中有兩個方法,先看其中一個方法
public String syncMethod() throws InterruptedException, ExecutionException { /*同步寫法*/ String str = syncService.method1("I").get(); String str2 = syncService.method2("love").get(); String str3 = syncService.method3("async").get(); return str + str2 + str3; }
這種寫法是調用異步方法後立即調用get()方法,即獲取結果,下面看測試結果,在controllor中調用該方法,下面看執行結果
2021-08-21 11:06:28.612 INFO 3584 — [nio-8080-exec-1] com.atssg.controller.SyncController : start
2021-08-21 11:06:58.651 INFO 3584 — [nio-8080-exec-1] com.atssg.controller.SyncController : str:Iloveasync
可以看到共執行瞭30s,在異步層的方法中的三個方法如下,
//@Async public Future<String> method1(String str) throws InterruptedException { Thread.sleep(1000*10); return new AsyncResult<>( str); } //@Async public Future<String> method2(String str) throws InterruptedException { Thread.sleep(1000*5); return new AsyncResult<>(str); } // @Async public Future<String> method3(String str) throws InterruptedException { Thread.sleep(1000*15); return new AsyncResult<>(str); }
可以看到這三個方法分別是睡眠10s、5s、15s,這就很好理解瞭syncMethod()方法中的寫法是同步的,未達到異步的目的,切記調用完異步方法進接著調用get()方法不是異步的方式,而是同步的。
3、正確方式
上面看瞭錯誤的用法,下面看正確的方式,
public String asyncMethod() throws InterruptedException, ExecutionException { Future<String> result1 = syncService.method1("I"); Future<String> result2 = syncService.method2("love"); Future<String> result3 = syncService.method3("async"); String str = result1.get(); String str2 = result2.get(); String str3 = result3.get(); String result = str + str2 + str3; return result; }
這種方式是首先調用異步方法,然後分別調用get()方法,取得執行結果。下面看測試結果
2021-08-21 11:17:23.516 INFO 3248 — [nio-8080-exec-1] com.atssg.controller.SyncController : start
2021-08-21 11:17:38.535 INFO 3248 — [nio-8080-exec-1] com.atssg.controller.SyncController : str:Iloveasync
執行時間未15s,這就很好解釋瞭,異步層的三個方法,分別睡眠的時間是10s、5s、15s,既然是異步執行的,那麼總的執行時間肯定是三個方法中最長的那個,符合測試結果。這才@Async正確的打開姿勢。
三、異步執行@Async註解
@Async註解的定義如下,
@Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface Async { String value() default ""; }
可以看到該註解可以用在類及方法上,用在類上表示類中的所有方法都是異步的,用在方法上表示該方法是異步的。
四、總結
今天的文章分享到這裡,主要分享瞭關於@Async註解在獲取執行結果的時候的坑,一定要先調用異步方法,然後再調用get()方法,獲取結果,其中get方法還有一個重載的,可以設置超時時間,即超過設置的超時時間便返回,不再等待,各位小夥伴可以自己試驗。
V get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException; }
下次繼續分享有關@Async註解使用的一些小細節,歡迎持續關註。
到此這篇關於詳解springboot使用異步註解@Async獲取執行結果的坑的文章就介紹到這瞭,更多相關springboot使用異步註解@Async 內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Java Spring註解之@Async的基本用法和示例
- springboot @Async 註解如何實現方法異步
- Springboot任務之異步任務的使用詳解
- 關於java中@Async異步調用詳細解析附代碼
- Java並發工具類Future使用示例