- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
在实际项目中,考虑到不同的数据使用者,我们经常要处理 VO、DTO、Entity、DO 等对象的转换,如果手动编写 setter/getter 方法一个个赋值,将非常繁琐且难维护。通常情况下,这类转换都是同名属性的转换(类型可以不同),我们更多地会使用 bean copy 工具,例如 Apache Commons BeanUtils、Cglib BeanCopier 等。 在使用 bean copy 工具时,我们更多地会考虑性能,有时也需要考虑深浅复制的问题。本文将对比几款常用的 bean copy 工具的性能,并介绍它们的原理、区别和使用注意事项。
在实际项目中,考虑到不同的数据使用者,我们经常要处理 VO、DTO、Entity、DO 等对象的转换,如果手动编写 setter/getter 方法一个个赋值,将非常繁琐且难维护。通常情况下,这类转换都是同名属性的转换(类型可以不同),我们更多地会使用 bean copy 工具,例如 Apache Commons BeanUtils、Cglib BeanCopier 等。
在使用 bean copy 工具时,我们更多地会考虑性能,有时也需要考虑深浅复制的问题。本文将对比几款常用的 bean copy 工具的性能,并介绍它们的原理、区别和使用注意事项。
本文使用 jmh 作为测试工具。
os:win 10
jdk:1.8.0_231
jmh:1.25
选择的 bean copy 工具及对应的版本如下:
apache commons beanUtils:1.9.4
spring beanUtils:5.2.10.RELEASE
cglib beanCopier:3.3.0
orika mapper:1.5.4
本文使用的 java bean 如下,这个是之前测试序列化工具时用过的。一个用户对象,一对一关联部门对象和岗位对象,其中部门对象又存在自关联。
public class User implements Serializable {
private static final long serialVersionUID = 1L;
// 普通属性--129个
private String id;
private String account;
private String password;
private Integer status;
// ······
/**
* 所属部门
*/
private Department department;
/**
* 岗位
*/
private Position position;
// 以下省略setter/getter方法
}
public class Department implements Serializable {
private static final long serialVersionUID = 1L;
// 普通属性--7个
private String id;
private String parentId;
// ······
/**
* 子部门
*/
private List<Department> children;
// 以下省略setter/getter方法
}
public class Position implements Serializable {
private static final long serialVersionUID = 1L;
// 普通属性--6个
private String id;
private String name;
// ······
// 以下省略setter/getter方法
}
下面展示部分测试代码,完整代码见末尾链接。
apache commons beanUtils 的 API 非常简单,通常只要一句代码就可以了。它支持自定义转换器(这个转换器是全局的,将替代默认的转换器)。
@Benchmark
public UserVO testApacheBeanUtils(CommonState commonState) throws Exception {
/*ConvertUtils.register(new Converter() {
@Override
public <T> T convert(Class<T> type, Object value) {
if (Boolean.class.equals(type) || boolean.class.equals(type)) {
final String stringValue = value.toString().toLowerCase();
for (String trueString : trueStrings) {
if (trueString.equals(stringValue)) {
return type.cast(Boolean.TRUE);
}
}
// ······
}
return null;
}
}, Boolean.class);*/
UserVO userVO = new UserVO();
org.apache.commons.beanutils.BeanUtils.copyProperties(userVO, commonState.user);
assert "zzs0".equals(userVO.getName());
return userVO;
}
apache commons beanUtils 的原理比较简单,浓缩起来就是下面的几行代码。可以看到,源对象属性值的获取、目标对象属性值的设置,都是使用反射实现,所以,apache commons beanUtils 的性能稍差。还有一点需要注意,它的复制只是浅度复制。
// 获取目标类的BeanInfo对象(这个会缓存起来,不用每次都重新创建)
BeanInfo targetBeanInfo = Introspector.getBeanInfo(target.getClass());
// 获取目标类的PropertyDescriptor数组(这个会缓存起来,不用每次都重新创建)
PropertyDescriptor[] targetPds = targetBeanInfo.getPropertyDescriptors();
// 遍历PropertyDescriptor数组,并给同名属性赋值
for(PropertyDescriptor targetPd : targetPds) {
// 获取源对象中同名属性的PropertyDescriptor对象,当然,这个也是通过Introspector获取的
PropertyDescriptor sourcePd = getPropertyDescriptor(source.getClass(), targetPd.getName());
// 读取源对象中该属性的值
Method readMethod = sourcePd.getReadMethod();
Object value = readMethod.invoke(source);
// 设置目标对象中该属性的值
Method writeMethod = targetPd.getWriteMethod();
writeMethod.invoke(target, value);
}
spring beanUtils 的 API 和 apache commons beanUtils 差不多,也是简单的一句代码。但是,前者只支持同类型属性的转换,且不支持自定义转换器。
@Benchmark
public UserVO testSpringBeanUtils(CommonState commonState) throws Exception {
UserVO userVO = new UserVO();
org.springframework.beans.BeanUtils.copyProperties(commonState.user, userVO);
assert "zzs0".equals(userVO.getName());
return userVO;
}
看过 spring beanUtils 源码就会发现,它只是一个简单的工具类,只有短短几行代码。原理的话,和 apache commons beanUtils 一样的,所以,它的复制也是浅度复制。
cglib beanCopier 需要先创建一个BeanCopier
,然后再执行 copy 操作。它也支持设置自定义转换器,但是,这种转换器仅限当前调用有效,而且,我们需要在同一个转换器里处理所有类型的转换。使用 cglib beanCopier 需要注意,BeanCopier
对象可复用,不需要重复创建。
@Benchmark
public UserVO testCglibBeanCopier(CommonState commonState, CglibBeanCopierState cglibBeanCopierState) throws Exception {
BeanCopier copier = cglibBeanCopierState.copier;
UserVO userVO = new UserVO();
copier.copy(commonState.user, userVO, null);
assert "zzs0".equals(userVO.getName());
return userVO;
}
@State(Scope.Benchmark)
public static class CglibBeanCopierState {
BeanCopier copier;
@Setup(Level.Trial)
public void prepare() {
copier = BeanCopier.create(User.class, UserVO.class, false);
}
}
cglib beanCopier 的原理也不复杂,它是使用了 asm 生成一个包含所有 setter/getter 代码的代理类,通过设置以下系统属性可以在指定路径输出生成的代理类:
cglib.debugLocation=D:/growUp/test
打开上面例子生成的代理类,可以看到,源对象属性值的获取、目标对象属性值的设置,都是直接调用对应方法,而不是使用反射,通过后面的测试会发现它的速度接近我们手动 setter/getter。另外,cglib beanCopier 也是浅度复制。
public class Object$$BeanCopierByCGLIB$$6bc9202f extends BeanCopier
{
public void copy(final Object o, final Object o2, final Converter converter) {
final UserVO userVO = (UserVO)o2;
final User user = (User)o;
userVO.setAccount(user.getAccount());
userVO.setAddress(user.getAddress());
userVO.setAge(user.getAge());
userVO.setBirthday(user.getBirthday());
userVO.setDepartment(user.getDepartment());
userVO.setDiploma(user.getDiploma());
// ······
}
}
相比其他 bean copy 工具,orika mapper 的 API 要复杂一些,相对地,它的功能也更强大,不仅支持注册自定义转换器,还支持注册对象工厂、过滤器等。使用 orika mapper 需要注意,MapperFactory
对象可复用,不需要重复创建。
@Benchmark
public UserVO testOrikaBeanCopy(CommonState commonState, OrikaState orikaState) throws Exception {
MapperFacade mapperFacade = orikaState.mapperFactory.getMapperFacade();// MapperFacade对象始终是同一个
UserVO userVO = mapperFacade.map(commonState.user, UserVO.class);
assert "zzs0".equals(userVO.getName());
return userVO;
}
@State(Scope.Benchmark)
public static class OrikaState {
MapperFactory mapperFactory;
@Setup(Level.Trial)
public void prepare() {
mapperFactory = new DefaultMapperFactory.Builder().build();
/*mapperFactory.getConverterFactory().registerConverter(new CustomConverter<Boolean, Integer>() {
@Override
public Integer convert(Boolean source, Type<? extends Integer> destinationType, MappingContext mappingContext) {
if(source == null) {
return null;
}
return source ? 1 : 0;
}
});*/
}
}
orika mapper 和 cglib beanCopier 有点类似,也会生成包含所有 setter/getter 代码的代理类,不同的是 orika mapper 使用的是 javassist,而 cglib beanCopier 使用的是 asm。
通过设置以下系统属性可以在指定路径输出生成的代理类(本文选择直接输出java文件):
# 输出java文件
ma.glasnost.orika.GeneratedSourceCode.writeSourceFiles=true
ma.glasnost.orika.writeSourceFilesToPath=D:/growUp/test
# 输出class文件
# ma.glasnost.orika.GeneratedSourceCode.writeClassFiles=true
# ma.glasnost.orika.writeClassFilesToPath=D:/growUp/test
和 cglib beanCopier 不同,orika mapper 生成了三个文件。根本原因在于 orika mapper 是深度复制,用户对象中的部门对象和岗位对象也会生成新的实例对象并拷贝属性。
打开其中一个文件,可以看到,普通属性直接赋值,像部门对象这种,会调用BoundMapperFacade
继续拷贝。
public class Orika_UserVO_User_Mapper166522553009000$0 extends ma.glasnost.orika.impl.GeneratedMapperBase {
public void mapAtoB(java.lang.Object a, java.lang.Object b, ma.glasnost.orika.MappingContext mappingContext) {
super.mapAtoB(a, b, mappingContext);
// sourceType: User
cn.zzs.bean.copy.other.User source = ((cn.zzs.bean.copy.other.User)a);
// destinationType: UserVO
cn.zzs.bean.copy.other.UserVO destination = ((cn.zzs.bean.copy.other.UserVO)b);
destination.setAccount(((java.lang.String)source.getAccount()));
destination.setAddress(((java.lang.String)source.getAddress()));
destination.setAge(((java.lang.Integer)source.getAge()));
if(!(((cn.zzs.bean.copy.other.Department)source.getDepartment()) == null)) {
if(((cn.zzs.bean.copy.other.Department)destination.getDepartment()) == null) {
destination.setDepartment((cn.zzs.bean.copy.other.Department)((ma.glasnost.orika.BoundMapperFacade)usedMapperFacades[0]).map(((cn.zzs.bean.copy.other.Department)source.getDepartment()), mappingContext));
} else {
destination.setDepartment((cn.zzs.bean.copy.other.Department)((ma.glasnost.orika.BoundMapperFacade)usedMapperFacades[0]).map(((cn.zzs.bean.copy.other.Department)source.getDepartment()), ((cn.zzs.bean.copy.other.Department)destination.getDepartment()), mappingContext));
}
} else {
{
destination.setDepartment(null);
}
}
// ······
if(customMapper != null) {
customMapper.mapAtoB(source, destination, mappingContext);
}
}
public void mapBtoA(java.lang.Object a, java.lang.Object b, ma.glasnost.orika.MappingContext mappingContext) {
// ······
}
}
以下以吞吐量作为指标,相同条件下,吞吐量越大越好。
cmd 指令如下:
mvn clean package
java -ea -jar target/benchmarks.jar -f 1 -t 1 -wi 10 -i 10
测试结果如下:
# JMH version: 1.25
# VM version: JDK 1.8.0_231, Java HotSpot(TM) 64-Bit Server VM, 25.231-b11
# VM invoker: D:\growUp\installation\jdk1.8.0_231\jre\bin\java.exe
# VM options: -ea
# Warmup: 10 iterations, 10 s each
# Measurement: 10 iterations, 10 s each
# Timeout: 10 min per iteration
# Threads: 1 thread, will synchronize iterations
# Benchmark mode: Throughput, ops/time
Benchmark Mode Cnt Score Error Units
BeanCopyTest.testApacheBeanUtils thrpt 10 4.077 ± 0.046 ops/ms
BeanCopyTest.testCglibBeanCopier thrpt 10 12158.830 ± 112.239 ops/ms
BeanCopyTest.testDeadCode thrpt 10 12393.230 ± 219.693 ops/ms
BeanCopyTest.testOrikaBeanCopy thrpt 10 1424.492 ± 16.948 ops/ms
BeanCopyTest.testSpringBeanUtils thrpt 10 88.815 ± 1.235 ops/ms
根据测试结果,对象拷贝速度方面:
手动拷贝 > cglib beanCopier > orika mapper > spring beanUtils > apache commons beanUtils
由于 apache commons beanUtils 和 spring beanUtils 使用了大量反射,所以速度较慢;
cglib beanCopier 和 orika mapper 使用动态代理生成包含 setter/getter 的代码的代理类,不需要调用反射来赋值,所以,速度较快。cglib beanCopier 的速度和手动拷贝不相上下。
orika mapper 是深度复制,需要额外处理对象类型的属性转换,也增加了部分开销。
以上数据仅供参考。感谢阅读。
2021-05-28 更改
相关源码请移步:beanCopy-tool-demo
本文为原创文章,转载请附上原文出处链接:https://www.cnblogs.com/ZhangZiSheng001/p/14108080.html
分层,抽象,高内聚,低耦合
这个问题在这里已经有了答案: Android ADT version required 20.0.0 and above (10 个答案) 关闭 9 年前。 我刚刚安装了 Eclipse Juno
按照 This page from codeplex 上的指南进行操作后,我无法在我的工具/选项窗口中看到 Python 选项。我认为我与指南的唯一偏差是: 发行版:没有安装 activestate
我有一个非常大的 .sql 脚本。我将此脚本添加到 Visual Studio 2013 下的 SQL Server 项目中。当我尝试构建它时,我收到此错误消息 This T-SQL script e
当我在SpringBoot项目中想加个依赖,但是不确定现有依赖的依赖的依赖.....有没有添加过这个依赖,怎么办呢?如果添加过了但是不知道我需要的这个依赖属于哪个依赖的下面,怎么查呢? IDEA中提供
我正在做一个项目来减少 PDF 的大小,压缩它们。我想知道市场上是否有任何非常好的工具/库(.NET)。 我确实尝试了一些像 Onstream Compression 这样的工具,但结果并不令人满意。
我想从我的源代码编译一个安卓内核。 但我想使用工具或类似的东西。 所以我只需单击一个按钮并获得一个可闪存的 zip 文件... 有工具吗? 我可以用脚本来做吗? 谢谢! 最佳答案 这取决于您从哪里获得
我们生成 pdf 文件,其中包含有关数万名客户每月财务余额的数据。在高峰期(年底有 100.000 个文件),使用在 5 台服务器之间分配负载,该过程可能需要长达 5 天的时间才能完成。工作负载的分配
模块:xmllib xmllib 是一个非验证的低级语法分析器。应用程序员使用的 xmllib 可以覆盖 XMLParser 类,并提供处理文档元素(如特定或类属标记,或字符实体)的方法。从 Py
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 3 年前。
我在一家医疗保健公司工作,拥有有关患者位置(地址、城市、州、 zip )的信息。我试图确定有多少百分比的患者住在离 5 个特定位置最近的地方。我正在寻找的答案是“25% 的患者住在离#1 地点最近的地
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 4年前关闭。 我们不允许在 Stack Overflow 上提出有关通用计算硬件和软件的问题。您可以编辑问
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be
请问我在哪里可以得到 SvcTraceViewer 工具? 我尝试下载并安装许多 SDK。 我查看了程序文件的垃圾箱。 我需要它来跟踪我的 WCF 调用出了什么问题。 最佳答案 您可以通过下载 Win
我正在尝试在我最喜欢的编辑器中设置适当的代码完成功能,我们将其称为AnEditor,以避免互联网上充斥着特定于程序的答案。 (您知道语言是ALanguage。)编辑器具有两个我喜欢的功能:它既可以在控
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
当 merge 的两个分支对同一文件有更改时,Mercurial 是否总是使用外部 merge 工具? 或者它是否首先查看它是否可以 merge 文件本身,如果不能,则仅转向外部工具? 我问的原因是我
我正在为我使用的编辑器编写 Scala 插件,该插件将突出显示所有未使用的代码路径(可能未使用 defs 、 vals 、 classes 和 implicits ),并为用户提供一个选项以将它们从.
我有 jquery 工具滚动器...我喜欢它只为 swipeLeft swipeRight 实现触摸选项。 当我使用 touch: true 时,它也会在向上/向下滑动时旋转.. 我按照此处的说明
我已经尝试了一些用于构建 UML(对象/依赖图)的 Eclipse 工具,但我真正需要的是一个工具来生成这样的代码外 UML。 (反之亦然) 我更喜欢一个简单的 UML 工具,它易于安装并且没有任何依
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我是一名优秀的程序员,十分优秀!