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

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

查看所有标签

猜你喜欢:

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

Visual LISP程序设计

Visual LISP程序设计

李学志 / 清华大学 / 2006-5 / 29.00元

本书系统地介绍了AutoCAD最新版本(2006)的Visual LISP程序设计技术。全书共分13章。前3章介绍AutoLISP语言的基础知识,第4章介绍Visual LISP的开发环境,第5~7章介绍程序的编辑、调试和设计的方法与技巧,第8章介绍如何定义新的AutoCAD命令及创建图层、线型、文字样式、剖面线、尺寸标注等各种AutoCAD对象,以及如何实现参数化图形设计的方法和技术,第9章介绍......一起来看看 《Visual LISP程序设计》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

在线进制转换器
在线进制转换器

各进制数互转换器

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

Base64 编码/解码