feilong-core 2.0.0 发布,让 Java 开发更简便的工具包

栏目: 软件资讯 · 发布时间: 5年前

内容简介:各位, 中秋节快乐 feilong-core 2.0.0 发布啦,让 Java 开发更简便的工具包 本次升级共有 3 处变更, 具体参见 2.0.0 milestone 2.0.0 文档地址: http://feilong-core.mydoc.io/ 单元测试数 增加至 2192 个, 单元测...

各位, 中秋节快乐

feilong-core 2.0.0 发布啦,让 Java 开发更简便的 工具

本次升级共有 3 处变更, 具体参见  2.0.0 milestone

2.0.0 文档地址: http://feilong-core.mydoc.io/

单元测试数 增加至 2192 个, 单元测试覆盖率 增加至 91% ,javadoc 比率 83%

[Feature] ????

  • #801 新建 ThreadUtil.execute(List<T>, int, PartitionPerHandler<T>)

给定一个待解析的 list,设定每个线程执行多少条 eachSize,使用自定义的 partitionRunnableBuilder,自动构造多条线程并运行.

主要是用来简化 execute(List, int, PartitionRunnableBuilder) 调用

重构:

对于以下代码:


 ThreadUtil.execute(list, 5, new PartitionRunnableBuilder<String>(){



     @Override

     public Runnable build(final List<String> perBatchList,PartitionThreadEntity partitionThreadEntity,Map<String, ?> paramsMap){



         return new Runnable(){



             @Override

             public void run(){

                 map.putAll(handle(perBatchList, noList));

             }

         };

     }

 });

可以重构成:


 ThreadUtil.execute(list, 5, new PartitionPerHandler<String>(){



     @Override

     public void handle(List<String> perBatchList,PartitionThreadEntity partitionThreadEntity,Map<String, ?> paramsMap){

         map.putAll(CopyrightTest.this.handle(perBatchList, noList));

     }

 });

上述事例,可以从 14 行代码, 精简到 7 行代码

  • #794 新增 PartitionPerHandler ,让多线程调用更简单

  • #803 新建 ThreadUtil.execute(List<T>, PartitionThreadConfig, Map<String, ?>, PartitionPerHandler<T>)

  • #802 新建 ThreadUtil.execute(List<T>, int, Map<String, ?>, PartitionPerHandler<T>)

[Update]

  • #800 新建 com.feilong.core.lang.thread 包, 将thread 相关类 移动进来 remove 不兼容

  • #799 AbstractPartitionThreadExecutor actualExcute name change to actualExecute rename 不兼容 坏味道

  • #798 PartitionThreadExecutor 方法名字从 excute 改成 execute rename 不兼容 坏味道

  • #797 PropertyValueObtainer.getDataUseSpring(Object, String) log trace 单词写错了 rename 不兼容 坏味道

[版本升级]

  • none

[Remove]

  • none

[Fix Bug] ????

  • none

[Javadoc]

  • #793 完善 ThreadUtil.sleep(long) 注释

  • #792 完善 ThreadUtil.execute(Runnable, int) 注释

[Junit Test]

  • none

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Elements of Information Theory

Elements of Information Theory

Thomas M. Cover、Joy A. Thomas / Wiley-Blackwell / 2006-7 / GBP 76.50

The latest edition of this classic is updated with new problem sets and material The Second Edition of this fundamental textbook maintains the book's tradition of clear, thought-provoking instr......一起来看看 《Elements of Information Theory》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具