Spring04之基于XML方式的依赖注入
作者:互联网
Spring04之基于XML方式的依赖注入
一级目录
二级目录
三级目录
1.Spring IOC基于xml文件的配置格式
此时这个XML配置文件就是IOC容器。
我们需要在其中配置所有我们需要的bean。
<?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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="hello" class="com.xinbao.pojo.HelloWord">
<!-- collaborators and configuration for this bean go here -->
<property name="name" value="lijiaxin"></property>
</bean>
<bean id="person" class="com.xinbao.pojo.Person">
<property name="PersonDao" ref="hello"></property>
</bean>
<bean id = "student" class="com.xinbao.pojo.Student">
<constructor-arg index="0" value="dongshi"></constructor-arg>
<constructor-arg index="1" value="90"></constructor-arg>
</bean>
</beans>
文件中一些属性的简单介绍
1.id属性:标识不同的bean,名字自己取,一般和pojo类名一样,开头字母小写。
2.class属性:该bean所属的类的全路径(原理是反射)
3.property属性:设置该bean中的属性。name是属性名,value是属性值。
4.ref属性:引用已经注册过得bean,值为引用的bean的id值。这种情况就是,一个类作为一个属性出现在另一个类中时。我们set该属性的值时,可以在spring的xml中通过ref属性来设置。
5.constructor-arg属性:选择带参的指定的的构造器。这里不再使用Set方式注入属性。
参数给属性注入值有三种方式:
1.下标赋值 index ;
2.类型赋值 type ;
3.参数名赋值 name;(掌握这个即可)
标签:XML,xml,依赖,Spring04,bean,IOC,目录,属性 来源: https://blog.csdn.net/qq_47686842/article/details/117574642