多线程同时查询,等待最慢线程查询完成后汇总数据

原本直接调用mapper去查数据库的话:

mapper。。。。

mapper。。。。

mapper。。。。

需要依次执行

根据下面这样写的话等最慢的那条查询走完就都走完了

用之前500毫秒,改成这样写之后接口40多毫秒

 try {
CompletableFuture<Integer> a = CompletableFuture.supplyAsync(() -> {
//调用查询mpper 第一组数据
            });
CompletableFuture<Integer> b = CompletableFuture.supplyAsync(() -> {
//调用查询mpper 第二组数据
            });
CompletableFuture<Integer> c = CompletableFuture.supplyAsync(() -> {
//调用查询mpper 第三组数据
            });
  CompletableFuture.allOf(a,b,c).join();
Integer one = a.get();
Integer two = b.get();
Integer three = c.get();
 } catch (Exception e) {
 return R.error();
}

用于个人记录,写的有点糙。

顺带记录一个保存两位小数的方法

String.format( "%.2f" ,float)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值