2020
10-10
10-10
基于Springboot吞吐量优化解决方案
一、异步执行实现方式二种:1.使用异步注解@aysnc、启动类:添加@EnableAsync注解2.JDK8本身有一个非常好用的Future类——CompletableFuture@AllArgsConstructorpublicclassAskThreadimplementsRunnable{privateCompletableFuture<Integer>re=null;publicvoidrun(){intmyRe=0;try{myRe=re.get()*re.get();}catch(Exceptione){e.printStackTrace();}System.out.println(myRe);}publicstatic...
继续阅读 >