SpringBoot详细讲解如何创建及刷新Spring容器bean

网友投稿 301 2022-07-25


目录一、前期准备1.1 创建工程1.2 创建Controller二、探究过程2.1 启动类2.2 SpringApplication2.3 ApplicationContextFactory2.4 SpringApplication2.5 结论

参考视频:https://bilibili.com/video/BV1Bq4y1Q7GZ?p=6通过视频的学习和自身的理解整理出的笔记。

一、前期准备

1.1 创建工程

创建springboot项目,springboot版本为2.5.0,引入spring-boot-starter-web依赖,pom文件如下:

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

org.springframework.boot

spring-boot-starter-parent

2.5.0

com.example

springboot

0.0.1-SNAPSHOT

springboot

Demo project for Spring Boot

1.8

org.springframework.boot

spring-boot-starter

org.springframework.boot

spring-boot-starter-web

org.springframework.boot

spring-boot-starter-test

test

wHGRdGhVbo

org.springframework.boot

spring-boot-maven-plugin

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

org.springframework.boot

spring-boot-starter-parent

2.5.0

com.example

springboot

0.0.1-SNAPSHOT

springboot

Demo project for Spring Boot

1.8

org.springframework.boot

spring-boot-starter

org.springframework.boot

spring-boot-starter-web

org.springframework.boot

spring-boot-starter-test

test

wHGRdGhVbo

org.springframework.boot

spring-boot-maven-plugin

1.2 创建Controller

创建一个简单的Controller用于测试

@RestController

public class HelloController {

public void helloController() {

System.out.println("创建了");

}

@RequestMapping("hello")

public String hello() {

return "hello";

}

}

二、探究过程

2.1 启动类

项目的运行只需要启动类中一行简单的代码,spring容器的创建就是通过SpringApplication.run(SpringbootApplication.class, args)这一行代码实现的。

其实就是调用了静态的run方法,传入了启动类的字节码对象。

2.2 SpringApplication

run()方法

又调用了另一个run方法。

public static ConfigurableApplicationContext run(Class> primarySource, String... args) {

return run(new Class[]{primarySource}, args);

}

run()方法

方法的返回值类型为ConfigurableApplicationContext,ApplicationContext就是Spring的容器。

public static ConfigurableApplicationContext run(Class>[] primarySources, String[] args) {

return new SpringApplication(primarySources).run(args);

}

我们来看看ConfigurableApplicationContext 继承结构

ConfigurableApplicationContext接口继承了ApplicationContext接口

下面我们通过debug进入run()方法中看看

run()方法

createApplicationContext()方法

容器工厂传入webApplication的类型,这个类型为Servlet应用。

Springboot可以做响应式的Web开发,这时webApplication的类型的类型就不是Servlet。

2.3 ApplicationContextFactory

这里是一个lambda表达式的写法,根据webApplicationType的类型返回对应的容器对象。

通过继承关系图可以看出,它的确是ApplicationContext

2.4 SpringApplication

run()方法,容器刷新前

看完了createApplicationContext()的过程,我们再次回到run()方法中,此时context已经创建完成。

我们观察一下context中都有些什么:

其中包含了bean工厂,bean工厂里有beanDefinitionNames和beanDefinitionMap。(与之前看的spring源码一样)

不过这里都是spring容器内置的beanDefinition对象,没有我们自定义的helloController,说明现在的容器还没有刷新。

我们现在获取不到HelloController的bean对象,当我们能获取到这个对象时,就说明容器刷新了。

run()方法,容器刷新后

继续往下运行,我们发现这行代码执行了好久,根据方法名称也可以看出它的功能就是刷新容器。

刷新后我们成功的获取到了bean对象。

此时beanDefinitionMap中包含了138个对象,刷新之前只包含5个。我们可以在里面找到helloController(Hello的H变成了小写)

refreshContext()方法

下面我们看看refreshContext()方法,其中调用了refresh()方法。

refresh()方法

refreshContext()方法中refresh(context)传入了容器对象,在这里调用了这个容器对象的refresh()方法。

后面暂时不往下看了。

2.5 结论

在启动类中调用SpringApplication的run方法时会根据容器的类型创建不同的容器对象,并调用容器的refresh方法。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Spring超详细讲解创建BeanDefinition流程
下一篇:SpringBoot详细探究讲解默认组件扫描
相关文章

 发表评论

暂时没有评论,来抢沙发吧~