import org.springframework.beans.BeanUtils;
前提
user 和 topic 分别是两个的实体类,两个实体类中有字段有相同部分。
现在需要把user实体类中的相同参数赋值给topic。
BeanUtils.copyProperties(user, topic);
import org.springframework.beans.BeanUtils;
前提
user 和 topic 分别是两个的实体类,两个实体类中有字段有相同部分。
现在需要把user实体类中的相同参数赋值给topic。
BeanUtils.copyProperties(user, topic);