在Spring框架中,無論何時bean被使用時,當僅被調用一個屬性。可以將這個bean聲明為內部bean。內部bean可以用setter注入“屬性”和構造方法注入“構造參數”的方式來實現。
比如,在我們的應用程序中,一個Customer類引用了一個Person類,我們要做的是創建一個Person實例,然后再Customer內部使用。
package com; public class Customer { private Person person; } class Person{ private int id; private String name; private int age; }