本博客基于SpringSourceCodeTest仓库中【SpringDemo1.0】tag进行的编写。目录
文章目录
- 目录
- Spring的Bean管理
- 基于扫描的方式装载bean
- XML格式解读
- XML内容解读
- 基于定义的方式装载bean
- 基于注解的方式装载bean
Spring的Bean管理 基于配置文件进行bean管理的方案是Spring初期推行的方式,在历史比较悠久的Spring项目中比较常见。
基于扫描的方式装载bean 一个比较典型的配置文件通常包含
标签,
用来表示该项目中哪些包中的bean需要被进行生命周期管理。默认情况下,使用
后,Spring会默认扫描定义的带有如下注解的bean:- @Component
- @Repository
- @Service
- @Controller
- @RestController
- @ControllerAdvice
- @Configuration
文件如下:
XML格式解读
在这份xml中,我们可以稍微简单说明都是做了一些什么事情。
- 首先我们定义了一个
的大标签,用于生命这个配置文件是用于Spring的生命周期管理,因此我们使用Spring-bean提供的命名空间,"xmlns="http://www.springframework.org/schema/beans"
; - 在下文中需要使用
标签,因此我们定义context所使用的命名空间xmlns:context="http://www.springframework.org/schema/context"
; - 然后我们定义我们需要扫描的包的位置
; - 至此我们的xml其实就已经不会报错了,说明此事我们的xml从结构上已经没有明显问题;
- 但是此时启动Spring启动依然会失败并且报错
Cannot find the declaration of element 'beans'.
,因此我们需要继续补充这份这份xml的schema文件,用来描述我们的xml中的标签行为; - 此时我们就需要引入我们的
xsi:schemaLocation
属性,为此我们首先需要引入xsi
的前缀命名空间xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- 最后我们补充完整的
xsi:schemaLocation
解析我们所引用的两个命名空间"http://www.springframework.org/schema/beans"
和"http://www.springframework.org/schema/context"
即可。 - 附:xmlns即xml namespace的缩写; xsi即xml schema instance的缩写; xsd即xml schema definition的缩写
XML内容解读
这里
context:component-scan
定义了我们的组件扫描的范围,我们直接定义到整个项目的根节点com.springtest.demo
,这样这个包内所有的组件都会被扫描并且组装到上下文中供我们使用。这里我们暂时不深究,留在将来“模仿”Spring的时候再来。
本部分主要测试文件以及相关文件清单为:
- test.ConfigurationTest#test1 – 测试函数
- src/main/resources/beans.xml – 配置文件
用来表示该项目中context初始化完成后,有哪些bean需要被补充加载,同时这些bean被装载过程中,以及被销毁时,要指定哪些动作,都是在这里定义的。其内部可使用的参数列表如下图所示(我的项目中Spring版本为5.2.2):文章图片
其中我们常用的属性为:
- name: 用于标记bean的名字
- class: 用于标记需要被实例化的class
- scope: singleton表示单例; prototype表示每次getBean会获得一个实例; request表示每次请求获得一个实例; session表示每次灰化获得一个实例
- lazy-init: 表示装载时间,如果为false表示Spring启动时装载,如果为true表示getBean时装载; 默认是false
- init-method: 当bean构造完成并且属性赋值完成之后,装载进context之前被执行的方法,不能带参数,可以抛出异常。
- 也可以通过实现Spring的
InitializingBean
接口; - 或者使用标准的
@PostConstruct
实现该功能
- 也可以通过实现Spring的
- destroy-method: 当bean被销毁时,需要被执行的方法,不能带参数,可以抛出异常。
- 也可以通过实现Spring的
DisposableBean
接口; - 或者实现Java的
Closeable/AutoCloseable
接口; - 或者使用标准的
@PreDestroy
注解实现该功能
- 也可以通过实现Spring的
- factory-method: 定义实例化对象时调用的函数
不难发现,这种方式定义上下文装载bean时,我们不需要对我们的类做任何注解(不需要@Component等)。
本部分主要测试文件以及相关文件清单为:
- test.ConfigurationTest#test1 – 测试函数
- src/main/resources/beans.xml – 配置文件
- com.springtest.demo.entity.Person – 被实例化的类
package com.springtest.demo.config;
import com.springtest.demo.config.typefilter.PersonTypeFilter;
import com.springtest.demo.entity.Person;
import com.springtest.demo.service.PersonService;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.ComponentScan.Filter;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.FilterType;
import org.springframework.stereotype.Controller;
import org.springframework.stereotype.Service;
// 配置类等效配置文件
@Configuration(value = "https://www.it610.com/article/beansConfig2")// 表示这是一个配置类
//@ComponentScan(value = "https://www.it610.com/article/com.springtest.demo" )// 表示需要扫描的包,可以尝试注释该行然后运行ConfigurationTest.test3查看区别
@ComponentScan(value = "https://www.it610.com/article/com.springtest.demo",
// 定制扫描规则,默认扫描@Controller, @Service, @Repository, @Component,控制排除哪些组件不需要被包含
//excludeFilters = @Filter(type = FilterType.ANNOTATION, classes = Controller.class),
useDefaultFilters = false,
includeFilters = {// 定制扫描规则,控制只扫描哪些组件,需要关闭默认Filter
// @Filter(type = FilterType.ANNOTATION, classes = {Controller.class}), // FilterType.ANNOTATION 按照注解方式进行操作
//@Filter(type = FilterType.ASSIGNABLE_TYPE,classes = {PersonService.class}),// FilterType.ASSIGNABLE_TYPE 按照指定类型的方式进行组件扫描
// FilterType.ASPECTJ比较不常用,指定AspectJ表达式进行组件扫描
// FilterType.REGEX指定符合正则的包进行扫描
// FilterType.CUSTOM // 使用自定义规则
@Filter(type = FilterType.CUSTOM,classes = {PersonTypeFilter.class})// 使用自定义规则
}
)// Component是一个可重复定义组件: @Repeatable
//@ComponentScan
public class BeansConfig {
@Bean(name = "person3")
public Person person01() {
Person person = new Person();
person.setAge(20);
person.setName("lisi");
return person;
}
}
上述代码中对
@ComponentScan
中各种扫描规则以及扫描过程中过滤器@Filter
的用法做了一些demo。详细实现需要再运行源码体会一下。主要使用内容如下:ComponentScan
注解:includeFilters
需要包含的扫描范围定义excludeFilters
不需要包含的扫描范围定义@Filte
注解:用于上述两种扫描规则的具体过滤规则定义,其Filterype
分为如下几种过滤规则:FilterType.ANNOTATION
:对不同的注解进行扫描FilterType.ASSIGNABLE_TYPE
:对不同的类名进行规则扫描FilterType.ASPECTJ
: 比较不常用,指定AspectJ表达式进行组件扫描FilterType.REGEX
: 指定符合正则的包进行扫描FilterType.CUSTOM
:使用自定义规则,上述集中规则应该均由该方式实现
【Spring|Spring的Bean管理】本部分主要测试文件以及相关文件清单为:
- test.ConfigurationTest#test2 – 测试函数
- com.springtest.demo.config.BeansConfig – 注解扫描的定义类
- com.springtest.demo.entity.Person – 被实例化的类
推荐阅读
- Java|Java基础——数组
- 人工智能|干货!人体姿态估计与运动预测
- java简介|Java是什么(Java能用来干什么?)
- Java|规范的打印日志
- Linux|109 个实用 shell 脚本
- 程序员|【高级Java架构师系统学习】毕业一年萌新的Java大厂面经,最新整理
- Spring注解驱动第十讲--@Autowired使用
- =======j2ee|spring用注解实现注入的@resource,@autowired,@inject区别
- SqlServer|sql server的UPDLOCK、HOLDLOCK试验
- jvm|【JVM】JVM08(java内存模型解析[JMM])