...
java一个实体类的值如何赋给另一个实体类的相同属性
导入 org.springframework.beans.BeanUtils
包。
使用 BeanUtils.copyProperties()
方式
举例:假设student类和teacher类都有name属性,通过下面一段代码,将student的name属性的值赋给teacher类
Student stu=new Student();
Teacher tea=new Teacher();
stu.set("name","张三");
BeanUtils.copyProperties(stu, tea);