Spring-IOC容器-02
Bean管理xml方式
注入空值和特殊符号
注入外部bean
注入内部bean和级联赋值
注入集合类型属性
1.XML方式注入空值和特殊符号
1.1注入空值null
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util https://www.springframework.org/schema/util/spring-util.xsd">
<!--使用构造方法进行属性的注入-->
<!--1、创建对象 注入属性-->
<bean id="orders" class="com.zzy.Orders"> <!--报错的原因是去找无参构造方法-->
<property name="name" value="保时捷"></property>
<property name="address" value="太原市"></property>
<!--属性值为null-->
<property name="tel">
<null/>
</property>
</bean>
</beans>
@Test
public void testOrders(){
//1.加载spring配置文件
ApplicationContext context= new ClassPathXmlApplicationContext("beanOrders.xml");
//2.获取配置创建的对象
Orders order = context.getBean("orders", Orders.class);
//3.输出对象book
System.out.println(order);
//4.调用方法
order.pay();
}
1.2 注入特殊符号
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util https://www.springframework.org/schema/util/spring-util.xsd">
<!--使用构造方法进行属性的注入-->
<!--1、创建对象 注入属性-->
<bean id="orders" class="com.zzy.Orders"> <!--报错的原因是去找无参构造方法-->
<property name="name" value="保时捷"></property>
<property name="address" value="太原市"></property>
<!--属性值为null
<property name="tel">
<null/>
</property>
-->
<!--属性值中有特殊符号
1.把<>进行转译,< >
2.把带特殊符号的内容写到CDATA
-->
<property name="tel">
<value>
<![CDATA[<<0351-1111>>]]>
</value>
</property>
</bean>
</beans>
@Test
public void testOrders(){
//1.加载spring配置文件
ApplicationContext context= new ClassPathXmlApplicationContext("beanOrders.xml");
//2.获取配置创建的对象
Orders order = context.getBean("orders", Orders.class);
//3.输出对象book
System.out.println(order);
//4.调用方法
order.pay();
}