SpringBoot启动原理分析

SpringBoot启动原理分析,第1张

自动配置核心类SpringFactoriesLoader

上面在说@EnableAutoConfiguration的时候有说META-INF下的springfactories文件,那么这个文件是怎么被spring加载到的呢,其实就是SpringFactoriesLoader类。

SpringFactoriesLoader是一个供Spring内部使用的通用工厂装载器,SpringFactoriesLoader里有两个方法

在这个SpringBoot应用启动过程中,SpringFactoriesLoader做了以下几件事:

加载所有META-INF/springfactories中的Initializer

加载所有META-INF/springfactories中的Listener

加载EnvironmentPostProcessor(允许在Spring应用构建之前定制环境配置)

接下来加载Properties和YAML的PropertySourceLoader(针对SpringBoot的两种配置文件的加载器)

各种异常情况的FailureAnalyzer(异常解释器)

加载SpringBoot内部实现的各种AutoConfiguration

模板引擎TemplateAvailabilityProvider(如Freemarker、Thymeleaf、Jsp、Velocity等)

总得来说,SpringFactoriesLoader和@EnableAutoConfiguration配合起来,整体功能就是查找springfactories文件,加载自动配置类。

整体启动流程

在我们执行入口类的main方法之后,运行SpringApplicationrun,后面new了一个SpringApplication对象,然后执行它的run方法。

初始化SpringApplication类

创建一个SpringApplication对象时,会调用它自己的initialize方法

执行核心run方法

初始化initialize方法执行完之后,会调用run方法,开始启动SpringBoot。

首先遍历执行所有通过SpringFactoriesLoader,在当前classpath下的META-INF/springfactories中查找所有可用的SpringApplicationRunListeners并实例化。调用它们的starting()方法,通知这些监听器SpringBoot应用启动。

创建并配置当前SpringBoot应用将要使用的Environment,包括当前有效的PropertySource以及Profile。

遍历调用所有的SpringApplicationRunListeners的environmentPrepared()的方法,通知这些监听器SpringBoot应用的Environment已经完成初始化。

打印SpringBoot应用的banner,SpringApplication的showBanner属性为true时,如果classpath下存在bannertxt文件,则打印其内容,否则打印默认banner。

根据启动时设置的applicationContextClass和在initialize方法设置的webEnvironment,创建对应的applicationContext。

创建异常解析器,用在启动中发生异常的时候进行异常处理(包括记录日志、释放资源等)。

设置SpringBoot的Environment,注册Spring Bean名称的序列化器BeanNameGenerator,并设置资源加载器ResourceLoader,通过SpringFactoriesLoader加载ApplicationContextInitializer初始化器,调用initialize方法,对创建的ApplicationContext进一步初始化。

调用所有的SpringApplicationRunListeners的contextPrepared方法,通知这些Listener当前ApplicationContext已经创建完毕。

最核心的一步,将之前通过@EnableAutoConfiguration获取的所有配置以及其他形式的IoC容器配置加载到已经准备完毕的ApplicationContext。

调用所有的SpringApplicationRunListener的contextLoaded方法,加载准备完毕的ApplicationContext。

调用refreshContext,注册一个关闭Spring容器的钩子ShutdownHook,当程序在停止的时候释放资源(包括:销毁Bean,关闭SpringBean的创建工厂等)

注: 钩子可以在以下几种场景中被调用:

1)程序正常退出

2)使用Systemexit()

3)终端使用Ctrl+C触发的中断

4)系统关闭

5)使用Kill pid命令杀死进程

获取当前所有ApplicationRunner和CommandLineRunner接口的实现类,执行其run方法

遍历所有的SpringApplicationRunListener的finished()方法,完成SpringBoot的启动。

1、首先,既然我们要 *** 作集合,那么我们首先需要先实例化一个集合,我们先实例化一个ArrayList()。

2、使用add()可以往指定的集合中添加一个元素,如我们这里添加一个字符串“java”到集合中。

3、将集合输出到控制台,确定元素已经添加到了集合中。我们直接使用Systemoutprintln()将其结果输出到控制台即可。

4、在控制台中,显示出下图所示的结果,说明我们添加元素成功了。我们进一步对集合进行其他的 *** 作。

5、接下来,我们contains()判断使用包含指定的元素。

6、我们再声明一个新的集合,同时往集合中添加元素。最后得到一个具有几个元素的集合。

7、我们这里输出的结果是true。

扩展资料

Thymeleaf语法:

(1) 变量的表达式:${}

用于访问 容器上下文环境 中的变量,例:

<span th:text="${information}">

(2) 选择变量表达式:{}

选择表达式计算的是 选定的对象 (th:object对象属性绑定的对象)

<div th:object="${session user}" >

Name: <span th: text=" {firstName}" >Sebastian

Surname: <span th: text=" {lastName}" >Pepper

Nationality: <span th: text=" {nationality}" >Saturn

</div>

(3) 信息表达式:#{}

一般用于 显示页面静态文本。将可能需要根据需求而整体变动的静态文本放在properties文件中,方便维护。通常与th:text属性一起使用。例如:

新建/WEB-INF/templates/homehtml,段落:<p th: text=" #{home welcome}" >This text will not be show!

新建/WEB-INF/templates/homeproperties,homewelcome:

homewelcome=this messages is from homeproperties!

jquery遍历获取每一行选中的记录的id进行组合 如1,2,3,5等

通过ajax的异步post提交参数到后台的控制器方法中

变量存储ids的信息

$(function(){

$('#send')click(function(){

$ajax({

type: "post",

url: "后台方法名称",

data: {ids:ids},

dataType: "json",

success: function(data){

$('#resText')empty(); //清空resText里面的所有内容

var html = '';

$each(data, function(commentIndex, comment){

html += '<div class="comment"><h6>' + comment['username']

+ ':</h6><p class="para"' + comment['content']

+ '</p></div>';

});

$('#resText')html(html);

}

});

});

});

以上就是关于SpringBoot启动原理分析全部的内容,包括:SpringBoot启动原理分析、Thymeleaf 中如何判断list集合中是否包含某个值、Thymeleaf如何将表格中被选中的checkbox的所有值传到后端等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9811216.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-02
下一篇 2023-05-02

发表评论

登录后才能评论

评论列表(0条)

保存