微知识:hutool的BeanUtil.copyProperties配置忽略空值
本文发布于 2024年11月20日,阅读 2 次,点赞
0 次,归类于
微知识
公众号:emanjusaka的编程栈
hutool的BeanUtil.copyProperties方法默认是会复制空值的
有时我们不需要复制空值,只想把有值的复制过去忽略掉空值
可以这么配置:
CopyOptions options = CopyOptions.create().setIgnoreNullValue(true);
BeanUtil.copyProperties(source, targe, options);