1.软文推荐

2.软文推荐

3.软文推荐

本篇文章为大家分享一下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);
}

本文来源:www.lxlinux.net/7828.html,若引用不当,请联系修改。

相关文章 8

1

南昌网站优化(南昌网站优化快速排名) 2分钟前

目录:1、南昌网站优化公司哪家好?2、南昌SEO:SEO优化为什么要学网站建设3、南昌网站优化哪一家公司好南昌网站优化公司哪家好? 珠峰...

2

简答讲解一下区块链中的不可能三角 3分钟前

在分布式领域,有个著名的 CAP 定理:分布式系统无法同时确保一致性(Consistency)、可用性(Availability)和分区容忍性(Partition),设计中需要弱化...

3

快速上手Filebeat 4分钟前

...

4

阿里云服务器操作系统选择(阿里云服务器操作系统怎么选择) 6分钟前

目录:1、阿里云的云服务器的操作系统怎么选择?2、如何更换阿里云服务器操作系统3、阿里云服务器操作系统有哪些?如何选择?4、阿里...

5

Linux常用命令—mysqlimport命令 8分钟前

Linux常用命令 mysqlimport命令 为mysql数据库服务器提供了一种命令行方式导入数据工具,它从特定格式的文本文件中读取数据插入MySQL数据库表...

6

aoyoyun(aoyo云) 10分钟前

目录:...

7

详解Nginx常用操作 10分钟前

Nginx 是一款面向性能设计的 HTTP 服务器,相较于 Apache、lighttpd 具有占有内存少,稳定性高等优势,本篇文章重点为大家讲解一下Nginx常用操...

8

RHEL6虚拟机联网具体方法 12分钟前

RHEL6虚拟机如何联网?当本篇文章为大家分享一下RHEL6虚拟机联网的具体方法,有需要的小伙伴可以参考一下。 切换到 /etc/sysconfig/network-sc...