public class A{
private B b;
}
public class B{
}
的applicationContext.xml
<bean id="aBean" class="A">
<property name="b"> ??? </property>
</bean>
如何在使用context.getBean("aBean")
时使用b = null创建A的实例?
我尝试了<property name="b"><null/></property>
,但这不起作用。
答案 0 :(得分:4)
实际上默认情况下它将为null。无需特定配置,即只省略<property>
元素。
实际上
<bean id="aBean" class="A">
<property name="b"><null /></property>
</bean>
答案 1 :(得分:-1)