Spring 给Bean属性注入null值

空字符串值可以使用元素可用来表示。例如:

<bean class="ExampleBean">
  <property name="email"><value/>property>
bean>

等同于Java代码: exampleBean.setEmail("")

null值则可以使用元素可用来表示。例如:

<bean class="ExampleBean">
  <property name="email"><null/>property>
bean>

等同于Java代码:exampleBean.setEmail(null)

你可能感兴趣的:(Spring,spring,ioc,null,bean)