1.Spring继承
1.1 Spring继承的特性
Spring继承与 Java 的继承不同,Java 是类层⾯的继承,即以class为单位,⼦类
可以继承⽗类的内部结构信息;Spring 是对象层⾯的 继承,⼦对象可以继承⽗对象的属性值。
<bean id="student2" class="com.southwind.entity.Student">
<property name="id" value="1"></property>
<property name="name" value="张三"></property>
<property name="age" value="22"></property>
<property name="addresses">
<list>
<ref bean="address"></ref>
<ref bean="address2"></ref>
</list>
</property>
</bean>
<bean id="stu" class="com.southwind.entity.Student" parent="student2">
<property name="name" value="李四"></property>
</bean>
可以看到,在id为stu的bean中,name设置为“李四”,而他继承了student2的的属性,因此他的id,age,address都继承了 student2的属性。
1.2.Spring继承的总结
Spring 的继承关注点在于具体的对象,⽽不在于类,即不同的两个类的实例化对象可以完成继承,前提 是⼦对象必须包含⽗对象的所有属性,同时可以在此基础上添加其他的属性
2.spring的依赖
2.1 依赖与继承类似,依赖也是描述 bean 和 bean 之间的⼀种关系,配置依赖之后,被依赖的 bean ⼀定先创 建,再创建依赖的 bean,A 依赖于 B,先创建 B,再创建 A。
2.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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="student" class="Student" depends-on="User"></bean>
<bean id="User" class="User"></bean>
</beans>
采用depends-on= 的写法,可以指定两个类创建的先后顺序。