教你如何用 Java 實現非同步呼叫
本教程教你如何使用Java實現非同步呼叫。 |
一、建立執行緒
@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 future=myService.longtime2(); System.out.println("main函式執行結束"); System.out.println("非同步執行結果:"+future.get()); } @Async public Future longtime2() { System.out.println("我在執行一項耗時任務"); try { Thread.sleep(8000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("完成"); return new AsyncResult<>(3); }
原文連結:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2655779/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Java實現非同步呼叫Java非同步
- 教你實現快應用storage介面同步呼叫
- idou老師教你學Istio 22 : 如何用istio實現呼叫鏈跟蹤
- 教你如何用smokeping實現釘釘告警
- 教你如何用 MongoDB 實現評論榜功能MongoDB
- Java怎樣呼叫外設,如呼叫掃描器Java
- java同步非阻塞IOJava
- Java 非同步呼叫方法Java非同步
- web service實現原理與非同步呼叫Web非同步
- 演算法-一步步教你如何用c語言實現堆排序(非遞迴)演算法C語言排序遞迴
- 使用 Java實現mTLS呼叫JavaTLS
- 教你如何用SQLite 實現if not exist 類似功能的操作SQLite
- 教你如何用WPF實現文字粒子閃爍動畫效果動畫
- python中非同步非阻塞如何實現Python非同步
- 萬字教你如何用 Python 實現線性規劃Python
- 用opencv實現的PCA演算法,非API呼叫OpenCVPCA演算法API
- C++非同步呼叫利器future/promise實現原理C++非同步Promise
- idou老師教你學Istio:如何用 Istio 實現速率限制
- 教你如何用vbs實現微信自動傳送訊息功能
- Java 非阻塞 IO 和非同步 IOJava非同步
- idou老師教你學Istio 23 : 如何用 Istio 實現速率限制
- 教你如何用python實現學生通訊錄管理系統Python
- 動態ip代理教你:如何用爬蟲實現前端頁面渲染爬蟲前端
- 關於java實現同步的方法Java
- tornado原理介紹及非同步非阻塞實現方式非同步
- 使用JNA實現Java對C的呼叫Java
- Spring Boot中如何優雅地實現非同步呼叫?Spring Boot非同步
- AES加密 – iOS與Java的同步實現加密iOSJava
- Java Thread實現讀寫同步 (轉)Javathread
- 手把手教你用Java實現AOPJava
- 在Java中實現遠端方法呼叫(轉)Java
- 從同步原語看非阻塞同步以及Java中的應用Java
- 如何解讀 Java IO、NIO 中的同步阻塞與同步非阻塞?Java
- idou老師教你學Istio06: 如何用istio實現流量遷移
- idou老師教你學Istio05: 如何用Isito實現智慧路由配置路由
- 同步非同步,阻塞非阻塞非同步
- 非同步、同步、阻塞、非阻塞非同步
- 同步、非同步、阻塞、非阻塞非同步