spring基础Bean管理基于xml注入

1.基于xml注入属性
1、什么是Bean管理
Bean管理指的是两个操作
(1) Spring创建对象
(2) Spirng注入属性
2.Bean管理操作有两种方式
(1)基于xml配置文件方式实现
(2)基于注解方式实现

基于xml方式注入属性
(1)DI:依赖注入,就是注入属性
3.第一种注入方式:使用set方法进行注入
(1)创建类,定义属性和对应的set方法,

spring基础Bean管理基于xml注入_第1张图片
(2)在spring配置文件配置对象创建,配置属性注入

spring基础Bean管理基于xml注入_第2张图片

4.第二种注入方式:使用有参数构造进行注入
(1)创建类,定义属性,创建属性对应。
spring基础Bean管理基于xml注入_第3张图片
(2)在spring配置文件中进行配置
spring基础Bean管理基于xml注入_第4张图片

5.p名称空间注入
(1)使用p名称空间注入,可以简化基于xml配置方式
第一步添加p名称空间在配置文件中。
在这里插入图片描述
第二步进行属性注入,在bean标签里面进行操作

相当于简化配置,底层还是基于set方法注入
在这里插入图片描述

字面量就是设置的固定值,比如赋了初值

6.注入其他属性 比如null或者带特殊符号的值

spring基础Bean管理基于xml注入_第5张图片

1. 注入外部bean

步骤:

(1) 两个类(2)再Service中调用dao里面的方法
spring基础Bean管理基于xml注入_第6张图片
(3)配置文件
spring基础Bean管理基于xml注入_第7张图片

测试外部bean
spring基础Bean管理基于xml注入_第8张图片

测试结果
spring基础Bean管理基于xml注入_第9张图片

2.注入内部bean
(1).两个类
spring基础Bean管理基于xml注入_第10张图片

spring基础Bean管理基于xml注入_第11张图片
(2).配置内部bean
spring基础Bean管理基于xml注入_第12张图片

测试
spring基础Bean管理基于xml注入_第13张图片

测试结果

在这里插入图片描述
3.注入属性,级联赋值

第一种写法:
相当于外部bean注入属性值
spring基础Bean管理基于xml注入_第14张图片

第二种写法:
spring基础Bean管理基于xml注入_第15张图片

人事部覆盖了先设置的财务部
spring基础Bean管理基于xml注入_第16张图片
测试
spring基础Bean管理基于xml注入_第17张图片
测试结果
在这里插入图片描述
4.注入集合属性

spring基础Bean管理基于xml注入_第18张图片
xml配置
spring基础Bean管理基于xml注入_第19张图片
测试
spring基础Bean管理基于xml注入_第20张图片
测试结果
spring基础Bean管理基于xml注入_第21张图片
4.在集合里面设置对象类型值
spring基础Bean管理基于xml注入_第22张图片
xml配置
spring基础Bean管理基于xml注入_第23张图片
测试spring基础Bean管理基于xml注入_第24张图片
5.把集合注入部分提取出来
(1)在spring配置文件中引入名称空间util
spring基础Bean管理基于xml注入_第25张图片

(2)使用util标签完成list集合注入提取(其他map,set一样)spring基础Bean管理基于xml注入_第26张图片
测试spring基础Bean管理基于xml注入_第27张图片
在这里插入图片描述

你可能感兴趣的:(sping,spring,bean)