SpringBoot工作原理

1.首先我们要从我们的启动类开始,我们发现启动类里有两个需要注意的地方

SpringBoot工作原理_第1张图片

2.了解@SpringBootApplication

SpringBoot工作原理_第2张图片
 

这里重点的注解有三个:

@SpringBootConfiguration

@EnableAutoConfiguration

@ComponentScan

3.@SpringBootConfiguration

SpringBoot工作原理_第3张图片

我们发现@Configuration注解这个注解的作用就是声明当前类是一个配置类,然后Spring会自动扫描到添加了@Configuration的类,并且读取其中的配置信息。而@SpringBootConfiguration是来声明当前类是SpringBoot应用的配置类,项目中只能有一个。所以一般我们无需自己添加。

4.@EnableAutoConfiguration

@EnableAutoConfiguration告诉SpringBoot基于你添加的依赖,去猜想你要如何配置Spring。比如我们引入了

spring-boot-starter-web,而这个启动器中帮我们添加了tomcat,SpringMVC的依赖。此时自动配置就知道你是要开发一个web应用,所以就帮你完成了web及SpringMVC的默认配置



	4.0.0
	
		org.springframework.boot
		spring-boot-starters
		1.5.4.RELEASE
	
	spring-boot-starter-web
	Spring Boot Web Starter
	Starter for building web, including RESTful, applications using Spring
		MVC. Uses Tomcat as the default embedded container
	http://projects.spring.io/spring-boot/
	
		Pivotal Software, Inc.
		http://www.spring.io
	
	
		${basedir}/../..
	
	
		
			org.springframework.boot
			spring-boot-starter
		
		
			org.springframework.boot
			spring-boot-starter-tomcat
		
		
			org.hibernate
			hibernate-validator
		
		
			com.fasterxml.jackson.core
			jackson-databind
		
		
			org.springframework
			spring-web
		
		
			org.springframework
			spring-webmvc
		
	

总结,SpringBoot内部对大量的第三方库或Spring内部库进行了默认配置,这些配置是否生效,取决于我们是否引入了对应库所需的依赖,如果有那么默认配置就会生效。

所以,我们使用SpringBoot构建一个项目,只需要引入所需框架的依赖,配置就可以交给SpringBoot处理了。除非你不希望使用SpringBoot的默认配置,它也提供了自定义配置的入口。

5.@ComponentScan

SpringBoot工作原理_第4张图片

配置组件扫描的指令,通过basePackageClasses或者basePackage属性指定扫描的包。如果没有指定这些属性,那么将从声明这个注解的类所在的包开始扫描包及子包

而我们的@SpringBootApplication注解声明的类就是main函数所在的启动类,因此扫描的包是该类所在包及其子包。因此,一般启动类会放在一个比较前的包目录中。

以上就是springboot大致的工作原理

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(SpringBoot学习笔记)