在Spring Boot中,可以使用BeanUtils类的copyProperties()方法进行Bean拷贝。该方法可以将一个JavaBean对象的属性值拷贝到另一个JavaBean对象中。具体使用方法如下:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-beanutils</artifactId>
</dependency>
import org.springframework.beans.BeanUtils;
public class MyClass {
private String name;
private int age;
// 省略getter和setter方法
public static void main(String[] args) {
MyClass source = new MyClass();
source.setName("John");
source.setAge(25);
MyClass target = new MyClass();
BeanUtils.copyProperties(source, target);
System.out.println(target.getName()); // 输出:John
System.out.println(target.getAge()); // 输出:25
}
}
在上述示例中,我们通过BeanUtils.copyProperties(source, target)方法将source对象的属性值拷贝到target对象中。拷贝后,target对象的name属性值为"John",age属性值为25。