Java BeanUtils.copyProperties的詳解

場景

開發中經常遇到,把父類的屬性拷貝到子類中。通常有2種方法:
1、一個一個set
2、用BeanUtils.copyProperties
很顯然BeanUtils更加方便,也美觀很多。
那麼任何情況都能使用BeanUtils麼,當然不是。要先瞭解他。

BeanUtils是深拷貝,還是淺拷貝?

是淺拷貝。
淺拷貝: 隻是調用子對象的set方法,並沒有將所有屬性拷貝。(也就是說,引用的一個內存地址)
深拷貝: 將子對象的屬性也拷貝過去。

什麼情況適合用BeanUtils

如果都是單一的屬性,那麼不涉及到深拷貝的問題,適合用BeanUtils。

有子對象就一定不能用BeanUtils麼

並不絕對,這個要區分考慮:
1、子對象還要改動。
2、子對象不怎麼改動。
雖然有子對象,但是子對象並不怎麼改動,那麼用BeanUtils也是沒問題的。

代碼例子

下面用代碼說明下。
翠山有個兒子無忌,兒子繼承瞭他的face和height。
但是life應該是自己的。
後來翠山自刎而死,無忌也變成dead狀態瞭。這就是淺拷貝,無忌用的life引用的翠山的life對象。

Father類:

@Data
public class Father {
    private String face; // 長相
    private String height; // 身高
    private Life life; // 生命
}

Life 類:

@Data
public class Life {
    private String status;
}

Son類和main方法:

@Data
public class Son extends Father{
    private Life life;

    public static void main(String[] args) {
        Father cuishan = new Father();
        cuishan.setFace("handsome");
        cuishan.setHeight("180");
        Life cuishanLife = new Life();
        cuishanLife.setStatus("alive");
        cuishan.setLife(cuishanLife);
        Son wuji=new Son();
        BeanUtils.copyProperties(cuishan,wuji);

//        Life wujiLife = wuji.getLife();
//        wujiLife.setStatus("alive");
//        wuji.setLife(wujiLife);
//        cuishanLife.setStatus("dead"); // 翠山後來自刎瞭

        System.out.println(JSON.toJSONString(cuishan));
        System.out.println(JSON.toJSONString(wuji));
    }
}

上面註釋出的代碼可以如下替換:
case1和case2還是受淺拷貝的影響,case3不受。
case1: 翠山自刎,無忌也掛瞭

//        Life wujiLife = wuji.getLife();
//        wujiLife.setStatus("alive");
//        wuji.setLife(wujiLife);
//        cuishanLife.setStatus("dead"); // 翠山後來自刎瞭

case2: 翠山自刎,無忌設置或者,翠山也活瞭

//        cuishanLife.setStatus("dead"); // 翠山後來自刎瞭
//        Life wujiLife = wuji.getLife();
//        wujiLife.setStatus("alive");
//        wuji.setLife(wujiLife);

case3: 翠山和無忌互不影響

	    cuishanLife.setStatus("dead"); // 翠山自刎瞭  該行放在上下均可
        // 無忌用個新對象 不受翠山影響瞭
        Life wujiLife = new Life();
        wujiLife.setStatus("alive");
        wuji.setLife(wujiLife);

dest ,src 還是 src,dest

筆者在這個爬過坑。
因為記得有beanutils這個工具,直接import瞭。
發現有copyProperty和copyProperties。 看瞭下發現是 dest,src ,於是果斷使用,結果發現參數沒瞭。

其實常見的BeanUtils有2個:
spring有BeanUtils
apache的commons也有BeanUtils。

區別如下:

spring的BeanUtils commons的BeanUtils
方法 copyProperty和copyProperties copyProperties
參數 src ,dest dest,src

這2個用哪個都行,但是要註意區別。 因為他們2個的src和dest是正好相反的,要特別留意。

到此這篇關於Java BeanUtils.copyProperties的詳解的文章就介紹到這瞭,更多相關Java BeanUtils.copyProperties內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: