当前位置: 首页 > news >正文

民宿网站建设方案服装网站的建设背景

民宿网站建设方案,服装网站的建设背景,招商加盟的网站应该怎么做,沃尔玛网上商城中国文章目录 Pre概述FutureFuture的缺陷类继承关系功能概述API提交任务的相关API结果转换的相关APIthenApplyhandlethenRunthenAcceptthenAcceptBoththenCombinethenCompose 回调方法的相关API异常处理的相关API获取结果的相关API DEMO实战注意事项 Pre 每日一博 - Java 异步编程… 文章目录 Pre概述FutureFuture的缺陷类继承关系功能概述API提交任务的相关API结果转换的相关APIthenApplyhandlethenRunthenAcceptthenAcceptBoththenCombinethenCompose 回调方法的相关API异常处理的相关API获取结果的相关API DEMO实战注意事项 Pre 每日一博 - Java 异步编程的 Promise 模式 CompletableFuture的前世今生 (上) Java8 - 使用CompletableFuture 构建异步应用 概述 常见的线程创建方式有两种一是直接继承Thread另一种是实现Runnable接口。但这两种方式有个缺点不支持获取线程执行结果。 所以在JDK1.5之后提供了Callable和Future可以在任务执行后获取执行结果。 Future Future类位于java.util.concurrent包下从下面的源码可以看出Future主要提供了三种能力 关闭执行中的任务判断任务是否执行完成获取任务执行的结果 package java.util.concurrent; public interface FutureV {// 取消执行中的任务boolean cancel(boolean mayInterruptIfRunning);// 判断任务是否被取消成功boolean isCancelled();// 判断任务是否执行完成boolean isDone();// 获取任务执行结果V get() throws InterruptedException, ExecutionException;// 在规定时间内获取任务执行结果若规定时间任务还没执行完则返回null而非抛异常V get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException; }Future的缺陷 Future通过isDone()判断任务是否执行完成get()获取任务执行的结果解决了创建线程异步执行任务不能获取执行结果的问题。 在任务异步执行中主线程在等待过程中可以做其他事但其本身也存在一定的局限性 并行执行多任务获取结果主线程长时间阻塞当需要将多个模块的任务异步执行时使用for循环遍历任务列表通过isDone()轮询判断任务是否执行完成通过get()方法获取任务执行结果且结果获取依赖任务执行顺序。但因Future的get()方法是主线程阻塞等待获取执行结果所以在结果返回前主线程不能处理其他任务长时间阻塞可能会产生block在使用时考虑用超时时间的get()方法。不能链式执行任务如上述场景希望在获取商品基础信息后执行获取优惠信息任务Future没有提供这种能力不能实现链式调用。不能将多个任务执行的结果组合在上述场景中希望获取商详所需的各个模块信息后组合成调用方需要的结果但Future不支持。不能处理异常Future没有异常处理的能力。 综上所述阻塞主线程获取结果的方式与异步编程的初衷相违背轮询判断任务是否执行完成会耗费不必要的CPU资源为优化上述问题在JDK1.8时引入了CompletableFuture实现类提供异步链式编程的能力。 类继承关系 CompletableFuture扩展了Future接口实现了 CompletionStage提供了函数式编程的能力通过回调的方式处理计算结果并提供了转换和组合CompletableFuture的方法从而简化异步编程的复杂性 CompletableFuture对象是JDK1.8版本新引入的类这个类实现了两个接口 一个是Future接口一个是CompletionStage接口 CompletionStage接口是JDK1.8版本提供的接口用于异步执行中的阶段处理CompletionStage定义了一组接口用于在一个阶段执行结束之后要么继续执行下一个阶段要么对结果进行转换产生新的结果等一般来说要执行下一个阶段都需要上一个阶段正常完成这个类也提供了对异常结果的处理接口。 功能概述 CompletableFuture 是一个实现了 Java 8 中 Completable 接口的类它代表一个异步计算的结果。 它提供了异步编程的能力可以让开发者在编写代码时更加方便地处理异步操作。 CompletableFuture具有以下主要特征: 异步编程能力 可以通过supplyAsync、runAsync等方法异步执行任务,不会阻塞当前线程。 组合式编程 支持thenApply、thenAccept、thenCompose等方法将多个CompletableFuture进行组合,实现复杂的异步流水线计算。 异常处理 可以通过whenComplete、exceptionally等方法设置异常处理,方便异步任务链的异常传播与处理。 结果获取 可以通过join()等待获取结果,也可以通过回调注册方式获取结果。 取消任务 可以通过cancel()取消正在执行的CompletableFuture任务。 依赖管理 可以通过thenCompose等方法明确定义任务间依赖关系。 综上,CompletableFuture为Java异步编程提供了强大支持,可以帮助构建高效、可靠的异步应用程序,是Java 8非常重要的新特性之一。它极大地简化并丰富了Java的异步编程模型。 API 提交任务的相关API CompletableFuture提供了四种创建异步对象的方法 public static CompletableFutureVoid runAsync(Runnable runnable) public static CompletableFutureVoid runAsync(Runnable runnable, Executor executor) public static U CompletableFutureU supplyAsync(SupplierU supplier) public static U CompletableFutureU supplyAsync(SupplierU supplier, Executor executor)supplyAsync提交的任务有返回值runAsync提交的任务没有返回值 两个接口都有一个重载的方法第二个入参为指定的线程池如果不指定则默认使用ForkJoinPool.commonPool()线程池。在使用的过程中尽量根据不同的业务来指定不同的线程池方便对不同线程池进行监控同时避免业务共用线程池相互影响。 结果转换的相关API thenApply public U CompletableFutureU thenApply(Function? super T,? extends U fn) public U CompletableFutureU thenApplyAsync(Function? super T,? extends U fn) public U CompletableFutureU thenApplyAsync(Function? super T,? extends U fn, Executor executor)入参是Function意思是将上一个CompletableFuture执行结果作为入参再次进行转换或者计算重新返回一个新的值。 handle public U CompletableFutureU handle(BiFunction? super T, Throwable, ? extends U fn) public U CompletableFutureU handleAsync(BiFunction? super T, Throwable, ? extends U fn) public U CompletableFutureU handleAsync(BiFunction? super T, Throwable, ? extends U fn, Executor executor)入参是BiFunction该函数式接口有两个入参一个返回值意思是处理上一个CompletableFuture的处理结果同时如果有异常需要手动处理异常。 thenRun public CompletableFutureVoid thenRun(Runnable action) public CompletableFutureVoid thenRunAsync(Runnable action) public CompletableFutureVoid thenRunAsync(Runnable action, Executor executor)入参是Runnable函数式接口该接口无需入参和出参这一组函数是在上一个CompletableFuture任务执行完成后在执行另外一个接口不需要上一个任务的结果也不需要返回值只需要在上一个任务执行完成后执行即可。 thenAccept public CompletableFutureVoid thenAccept(Consumer? super T action) public CompletableFutureVoid thenAcceptAsync(Consumer? super T action) public CompletableFutureVoid thenAcceptAsync(Consumer? super T action, Executor executor)入参是Consumer该函数式接口有一个入参没有返回值所以这一组接口的意思是处理上一个CompletableFuture的处理结果但是不返回结果。 thenAcceptBoth public U CompletableFutureVoid thenAcceptBoth(CompletionStage? extends U other, BiConsumer? super T, ? super U action) public U CompletableFutureVoid thenAcceptBothAsync(CompletionStage? extends U other, BiConsumer? super T, ? super U action) public U CompletableFutureVoid thenAcceptBothAsync(CompletionStage? extends U other, BiConsumer? super T, ? super U action, Executor executor)入参包括CompletionStage以及BiConsumer CompletionStage是JDK1.8新增的接口在JDK中只有一个实现类CompletableFuture所以第一个入参就是CompletableFuture这一组函数是用来接受两个CompletableFuture的返回值并将其组合到一起。 BiConsumer这个函数式接口有两个入参并且没有返回值BiConsumer的第一个入参就是调用方CompletableFuture的执行结果第二个入参就是thenAcceptBoth接口入参的CompletableFuture的执行结果。 所以这一组函数意思是将两个CompletableFuture执行结果合并到一起。 thenCombine public U,V CompletableFutureV thenCombine(CompletionStage? extends U other, BiFunction? super T,? super U,? extends V fn) public U,V CompletableFutureV thenCombineAsync(CompletionStage? extends U other, BiFunction? super T,? super U,? extends V fn) public U,V CompletableFutureV thenCombineAsync(CompletionStage? extends U other, BiFunction? super T,? super U,? extends V fn, Executor executor)和thenAcceptBoth类似入参都包含一个CompletionStage也就是CompletableFuture对象意思也是组合两个CompletableFuture的执行结果不同的是thenCombine的第二个入参为BiFunction该函数式接口有两个入参同时有一个返回值。所以与thenAcceptBoth不同的是thenCombine将两个任务结果合并后会返回一个全新的值作为出参。 thenCompose public U CompletableFutureU thenCompose(Function? super T, ? extends CompletionStageU fn) public U CompletableFutureU thenComposeAsync(Function? super T, ? extends CompletionStageU fn) public U CompletableFutureU thenComposeAsync(Function? super T, ? extends CompletionStageU fn, Executor executor)意思是将调用方的执行结果作为Function函数的入参同时返回一个新的CompletableFuture对象。 回调方法的相关API public CompletableFutureT whenComplete(BiConsumer? super T, ? super Throwable action) public CompletableFutureT whenCompleteAsync(BiConsumer? super T, ? super Throwable action) public CompletableFutureT whenCompleteAsync(BiConsumer? super T, ? super Throwable action, Executor executor)意思是当上一个CompletableFuture对象任务执行完成后执行该方法。BiConsumer函数式接口有两个入参没有返回值这两个入参第一个是CompletableFuture任务的执行结果第二个是异常信息。表示处理上一个任务的结果如果有异常则需要手动处理异常与handle方法的区别在于handle方法的BiFunction是有返回值的而BiConsumer是没有返回值的。 以上方法都有一个带有Async的方法带有Async的方法表示是异步执行的会将该任务放到线程池中执行同时该方法会有一个重载的方法最后一个参数为Executor表示异步执行可以指定线程池执行。为了方便进行控制最好在使用CompletableFuture时手动指定我们的线程池。 异常处理的相关API public CompletableFutureT exceptionally(FunctionThrowable, ? extends T fn) 是用来处理异常的当任务抛出异常后可以通过exceptionally来进行处理也可以选择使用handle来进行处理不过两者有些不同hand是用来处理上一个任务的结果如果有异常情况就处理异常。而exceptionally可以放在CompletableFuture处理的最后作为兜底逻辑来处理未知异常。 获取结果的相关API public static CompletableFutureVoid allOf(CompletableFuture?... cfs) public static CompletableFutureObject anyOf(CompletableFuture?... cfs)allOf是需要入参中所有的CompletableFuture任务执行完成才会进行下一步 anyOf是入参中任何一个CompletableFuture任务执行完成都可以执行下一步。 public T get() throws InterruptedException, ExecutionException public T get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException public T getNow(T valueIfAbsent) public T join()get方法一个是不带超时时间的一个是带有超时时间的。 getNow方法则是立即返回结果如果还没有结果则返回默认值也就是该方法的入参。 join方法是不带超时时间的等待任务完成。 DEMO 通过CompletableFuture来实现一个多线程处理异步任务的例子。 创建10个任务提交到我们指定的线程池中执行并等待这10个任务全部执行完毕。 每个任务的执行流程为第一次先执行加法第二次执行乘法如果发生异常则返回默认值当10个任务执行完成后依次打印每个任务的结果。 public void demo() throws InterruptedException, ExecutionException, TimeoutException {// 1、自定义线程池ExecutorService executorService new ThreadPoolExecutor(5, 10,60L, TimeUnit.SECONDS,new LinkedBlockingQueue(100));// 2、集合保存future对象ListCompletableFutureInteger futures new ArrayList(10);for (int i 0; i 10; i) {int finalI i;CompletableFutureInteger future CompletableFuture// 提交任务到指定线程池.supplyAsync(() - this.addValue(finalI), executorService)// 第一个任务执行结果在此处进行处理.thenApplyAsync(k - this.plusValue(finalI, k), executorService)// 任务执行异常时处理异常并返回默认值.exceptionally(e - this.defaultValue(finalI, e));// future对象添加到集合中futures.add(future);}// 3、等待所有任务执行完成此处最好加超时时间CompletableFuture.allOf(futures.toArray(new CompletableFuture[0])).get(5, TimeUnit.MINUTES);for (CompletableFutureInteger future : futures) {Integer num future.get();System.out.println(任务执行结果为 num);}System.out.println(任务全部执行完成);}private Integer addValue(Integer index) {System.out.println(第 index 个任务第一次执行);if (index 3) {int value index / 0;}return index 3;}private Integer plusValue(Integer index, Integer num) {System.out.println(第 index 个任务第二次执行上次执行结果 num);return num * 10;}private Integer defaultValue(Integer index, Throwable e) {System.out.println(第 index 个任务执行异常 e.getMessage());e.printStackTrace();return 10;}实战 举个例子 假设详页有以下几个模块每个模块需要如下时间才能完成 获取商品基础信息 0.5s 获取优惠信息 1s 获取门店信息 1s 获取验机评估报告信息 1s 获取标品参数信息 1s 组装返回商品信息 0.5s串行执行每个模块那么一共需要5s才能返回给调用方如果接口产生超时等会比5s还要长显然是不能接受的 如果有多个线程并行完成各个模块可能2s内就能返回信息。 可以将获取商品详情页的步骤分为三步分别为 获取商品基础信息、商品验机评估报告信息、商品标品参数信息、门店信息获取商品优惠信息需要等1结束将上述信息RPC结果组装返回需要等12结束。 因为多任务异步并行执行最终耗时将取决于耗时最长的链路。如下图所示 代码示例 ExecutorService testThreadPool Executors.newFixedThreadPool(10);ResultDTO resultDTO new ResultDTO();//基础信息CompletableFutureVoid productBaseInfoFuture CompletableFuture.runAsync(() - {BaseInfoDTO baseInfoDTO rpcxx;resultDTO.setBaseInfoDTO(baseInfoDTO);}, testThreadPool);//优惠信息CompletableFutureVoid couponInfoFuture productBaseInfoFuture.thenAcceptAsync(() - {CouponInfoDTO couponInfoDTO rpcxx;resultDTO.setCouponInfoDTO(couponInfoDTO);}, testThreadPool);//验机评估报告信息CompletableFutureVoid qcInfoFuture CompletableFuture.runAsync(() - {QcInfoDTO qcInfoDTO rpcxx;resultDTO.setQcInfoDTO(qcInfoDTO);}, testThreadPool);//门店信息CompletableFutureVoid storeInfoFuture CompletableFuture.runAsync(() - {StoreInfoDTO storeInfoDTO rpcxx;resultDTO.setStoreInfoDTO(storeInfoDTO);}, testThreadPool);//标品参数信息CompletableFutureVoid spuInfoFuture CompletableFuture.runAsync(() - {SpuInfoDTO spuInfoDTO rpcxx;resultDTO.setSpuInfoDTO(spuInfoDTO);}, testThreadPool);//组装结果CompletableFutureVoid allQuery CompletableFuture.allOf(couponInfoFuture, qcInfoFuture, storeInfoFuture, spuInfoFuture);CompletableFutureVoid buildFuture allQuery.thenAcceptAsync((result) - {//组装逻辑return null;}).join();以上即为获取门店商品详情页异步编排的实现逻辑但也发现该方案创建多个异步任务执行逻辑不一样但流程大致相同类似的代码重复写多遍不便于扩展和阅读。 在此基础上可以优化为使用CompletableFuture简单工厂策略模式将上述步骤中的每个模块都作为策略handler且策略之间有权重依赖关系模块类型作为工厂类型将模块类型放进列表中使用CompletableFuture.allOf()异步执行列表中的任务。 伪代码如下 ListString eventList Arrays.asList(xx, xxx);CompletableFuture.allOf(eventList.stream().map(event -CompletableFuture.runAsync(() - {//通过工厂类型获取策略实现handlerif (Objects.nonNull(handler)) {//如果存在则执行}}, testThreadPool)).toArray(CompletableFuture[]::new)).join();注意事项 当有多个任务可以异步并行执行时使用CompletableFuture任务越多效果越明显使用CompletableFuture可以将多个任务串联执行也可以利用组合方式将任务排列由列表变成树结构在使用集合接收多线程处理任务的结果时需要考虑线程安全问题当任务执行有相互依赖关系时需考虑任务超时主动结束避免系统block。
文章转载自:
http://www.morning.qmsbr.cn.gov.cn.qmsbr.cn
http://www.morning.tgwfn.cn.gov.cn.tgwfn.cn
http://www.morning.zhqfn.cn.gov.cn.zhqfn.cn
http://www.morning.807yy.cn.gov.cn.807yy.cn
http://www.morning.tqgmd.cn.gov.cn.tqgmd.cn
http://www.morning.bxqtq.cn.gov.cn.bxqtq.cn
http://www.morning.fnssm.cn.gov.cn.fnssm.cn
http://www.morning.drndl.cn.gov.cn.drndl.cn
http://www.morning.kysport1102.cn.gov.cn.kysport1102.cn
http://www.morning.dkqbc.cn.gov.cn.dkqbc.cn
http://www.morning.tsyny.cn.gov.cn.tsyny.cn
http://www.morning.cywf.cn.gov.cn.cywf.cn
http://www.morning.dmrjx.cn.gov.cn.dmrjx.cn
http://www.morning.rtlrz.cn.gov.cn.rtlrz.cn
http://www.morning.pfntr.cn.gov.cn.pfntr.cn
http://www.morning.mrfbp.cn.gov.cn.mrfbp.cn
http://www.morning.tpxgm.cn.gov.cn.tpxgm.cn
http://www.morning.sqnrz.cn.gov.cn.sqnrz.cn
http://www.morning.tnfyj.cn.gov.cn.tnfyj.cn
http://www.morning.slkqd.cn.gov.cn.slkqd.cn
http://www.morning.fpryg.cn.gov.cn.fpryg.cn
http://www.morning.mnbcj.cn.gov.cn.mnbcj.cn
http://www.morning.gtqws.cn.gov.cn.gtqws.cn
http://www.morning.lmrjn.cn.gov.cn.lmrjn.cn
http://www.morning.sthp.cn.gov.cn.sthp.cn
http://www.morning.thnpj.cn.gov.cn.thnpj.cn
http://www.morning.qcfgd.cn.gov.cn.qcfgd.cn
http://www.morning.wjlkz.cn.gov.cn.wjlkz.cn
http://www.morning.skcmt.cn.gov.cn.skcmt.cn
http://www.morning.llcgz.cn.gov.cn.llcgz.cn
http://www.morning.mhmcr.cn.gov.cn.mhmcr.cn
http://www.morning.bryyb.cn.gov.cn.bryyb.cn
http://www.morning.bgqqr.cn.gov.cn.bgqqr.cn
http://www.morning.qtzqk.cn.gov.cn.qtzqk.cn
http://www.morning.eshixi.com.gov.cn.eshixi.com
http://www.morning.mngyb.cn.gov.cn.mngyb.cn
http://www.morning.kmrgl.cn.gov.cn.kmrgl.cn
http://www.morning.xbdrc.cn.gov.cn.xbdrc.cn
http://www.morning.jjsxh.cn.gov.cn.jjsxh.cn
http://www.morning.kxnnh.cn.gov.cn.kxnnh.cn
http://www.morning.fwcnx.cn.gov.cn.fwcnx.cn
http://www.morning.nzlsm.cn.gov.cn.nzlsm.cn
http://www.morning.kqpsj.cn.gov.cn.kqpsj.cn
http://www.morning.kydrb.cn.gov.cn.kydrb.cn
http://www.morning.jwqqd.cn.gov.cn.jwqqd.cn
http://www.morning.mfzyn.cn.gov.cn.mfzyn.cn
http://www.morning.rynqh.cn.gov.cn.rynqh.cn
http://www.morning.qmwzr.cn.gov.cn.qmwzr.cn
http://www.morning.sskhm.cn.gov.cn.sskhm.cn
http://www.morning.nlkhr.cn.gov.cn.nlkhr.cn
http://www.morning.kyzja.com.gov.cn.kyzja.com
http://www.morning.fkgqn.cn.gov.cn.fkgqn.cn
http://www.morning.dshkp.cn.gov.cn.dshkp.cn
http://www.morning.lcplz.cn.gov.cn.lcplz.cn
http://www.morning.nhzxd.cn.gov.cn.nhzxd.cn
http://www.morning.hhxpl.cn.gov.cn.hhxpl.cn
http://www.morning.kqbwr.cn.gov.cn.kqbwr.cn
http://www.morning.tqfnf.cn.gov.cn.tqfnf.cn
http://www.morning.bxczt.cn.gov.cn.bxczt.cn
http://www.morning.brbmf.cn.gov.cn.brbmf.cn
http://www.morning.xqjh.cn.gov.cn.xqjh.cn
http://www.morning.geledi.com.gov.cn.geledi.com
http://www.morning.lwxsy.cn.gov.cn.lwxsy.cn
http://www.morning.rjrlx.cn.gov.cn.rjrlx.cn
http://www.morning.wflpj.cn.gov.cn.wflpj.cn
http://www.morning.lsnhs.cn.gov.cn.lsnhs.cn
http://www.morning.lthgy.cn.gov.cn.lthgy.cn
http://www.morning.gbfck.cn.gov.cn.gbfck.cn
http://www.morning.qywfw.cn.gov.cn.qywfw.cn
http://www.morning.qbgdy.cn.gov.cn.qbgdy.cn
http://www.morning.ybgpk.cn.gov.cn.ybgpk.cn
http://www.morning.pwrkl.cn.gov.cn.pwrkl.cn
http://www.morning.zbkwj.cn.gov.cn.zbkwj.cn
http://www.morning.mnclk.cn.gov.cn.mnclk.cn
http://www.morning.seoqun.com.gov.cn.seoqun.com
http://www.morning.zwtp.cn.gov.cn.zwtp.cn
http://www.morning.jcnmy.cn.gov.cn.jcnmy.cn
http://www.morning.mtcnl.cn.gov.cn.mtcnl.cn
http://www.morning.nuejun.com.gov.cn.nuejun.com
http://www.morning.ywxln.cn.gov.cn.ywxln.cn
http://www.tj-hxxt.cn/news/275496.html

相关文章:

  • 做微信投票的网站专题网站建设策划书
  • 大型国有企业网站建设深圳定制巴士怎么买票
  • 做网站实训报告总结网站设计排版布局
  • 青海建设厅的门户网站成品直播源码
  • 容城县网站开发wordpress订阅支付
  • 网站开发毕业答辩ppt网站分为哪些部分组成部分组成
  • 服务器网站建设实训报告承德微网站建设
  • 福州网站建设网站商丘网站制作
  • 新泰网站制作方案巴巴策划网站
  • 湖南网站建设哪家专业天津建设银行官网站
  • 网站规划的主要任务是什么php 个人网站
  • 甘肃省建设厅网站首页绿色建筑生物医药基地网站建设
  • 免费行情软件app网站大全下载有图片wordpress会员管理
  • 网站建设交付物清单android studio入门
  • 东莞网站制作公制作人结局金秀贤和谁在一起了
  • 国外有建站公司吗如何做电影网站挣钱
  • 如何做领券网站网站做系统叫什么软件
  • 建设网站的相关技术网站推广软文甄选天天软文
  • 网站开发平面设计师岗位要求网站系统使用手册
  • 园州网站建设哪方面的网站
  • 常州微信网站建设案例东莞 传媒 网站建设
  • 周口网站建设公司中企动力科技股份有限公司青岛分公司
  • 盐城网站优化服务宜布网网站谁做的
  • 网站组成费用中文网站后台
  • 泰安网站建设制作电话号码教做家常菜的视频网站
  • 企业推广类网站h5免费制作平台企业秀
  • 资阳建设网站专门做高端网站设计的云华设计
  • 河南网站seo推广房产网站代理
  • 郑州做网站公司wordpress 网站访问量
  • 做英文企业网站网页版梦幻西游杨洋兑换码是多少