spring BeanUtils 工具实现对象之间的copy

Posted iscys

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring BeanUtils 工具实现对象之间的copy相关的知识,希望对你有一定的参考价值。

一般我们会开发中会遇到返回用户信息的时候,不需要返回密码或者其他参数,这时候我们需要重新定义一个VO类去除不需要的参数,将原对象copy到VO类中

使用spring的BeanUtils可以实现对象的copy

语法:

BeanUtils.copyProperties(source, target);
import org.springframework.beans.BeanUtils;

SdbDbUser user =userServer.getUserInfo(toUser); UserVO userVo= new UserVO(); BeanUtils.copyProperties(user, userVo);

 




以上是关于spring BeanUtils 工具实现对象之间的copy的主要内容,如果未能解决你的问题,请参考以下文章

mapstruct工具包的使用

有没有类似BeanUtils.copyProperties实现Map和Bean之间的复制

Spring的对象拷贝BeanUtils

干掉 BeanUtils!试试这款 Bean 自动映射工具,真心强大!

两难!到底用Apache BeanUtils还是Spring BeanUtils?

干掉 BeanUtils!试试这款 Bean 自动映射工具,真心强大!!