91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java異步調用的方法是什么

發布時間:2022-01-26 15:18:34 來源:億速云 閱讀:139 作者:iii 欄目:開發技術

這篇文章主要講解了“Java異步調用的方法是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“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 future = executor.submit(new Callable() {
       @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 future = CompletableFuture.supplyAsync(new Supplier() {
       @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方式:
"executor" />"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);
}

感謝各位的閱讀,以上就是“Java異步調用的方法是什么”的內容了,經過本文的學習后,相信大家對Java異步調用的方法是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

四川省| 长白| 洮南市| 临沭县| 安远县| 瑞金市| 滕州市| 光泽县| 娱乐| 洛阳市| 安宁市| 明溪县| 军事| 安乡县| 类乌齐县| 偃师市| 东兴市| 台中市| 梅河口市| 云浮市| 南昌市| 南安市| 青浦区| 兴和县| 鄂伦春自治旗| 松阳县| 满城县| 花莲县| 正安县| 汨罗市| 宁都县| 武乡县| 措美县| 安溪县| 施秉县| 松溪县| 西宁市| 会同县| 图片| 瑞金市| 应城市|