SpringBootでBeanをコピーする方法は何ですか?

Spring Bootの中では、BeanUtilsクラスのcopyProperties()メソッドを使用して、Beanのコピーを行うことができます。このメソッドは、1つのJavaBeanオブジェクトのプロパティ値を別のJavaBeanオブジェクトにコピーすることができます。具体的な使用方法は以下の通りです:

  1. 必要な依存関係をインポートします。
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-beanutils</artifactId>
</dependency>
  1. コード内でcopyProperties()メソッドを使用してBeanをコピーする:
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になります。

bannerAds