在Spring中,可以使用BeanUtils.copyProperties方法進行對象之間的屬性拷貝。該方法有兩個參數,第一個參數是源對象,第二個參數是目標對象。方法會將源對象的屬性值復制到目標對象中,屬性名和類型相同的屬性會被復制。
使用方法如下:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
</dependency>
public class SourceObject {
private String name;
private int age;
// getters and setters
}
public class TargetObject {
private String name;
private int age;
// getters and setters
}
import org.springframework.beans.BeanUtils;
public class Main {
public static void main(String[] args) {
SourceObject source = new SourceObject();
source.setName("John");
source.setAge(25);
TargetObject target = new TargetObject();
BeanUtils.copyProperties(source, target);
System.out.println(target.getName()); // Output: John
System.out.println(target.getAge()); // Output: 25
}
}
以上代碼中,將源對象source的屬性值拷貝到目標對象target中。通過調用target.getName()和target.getAge()可以獲取到拷貝后的屬性值。