Spring继承与依赖

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= 的写法,可以指定两个类创建的先后顺序。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

华农DrLai

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值