SpringBoot:
1.特点: 约定大于配置
2.主要优点: 1.为所有的spring开发者更快的入门
2.开箱即用,提供各种默认配置来简化姓名配置
3.内嵌式容器简化web项目
4.没有冗余代码生成和xml配置的要求
3.springboot自动装配原理:
1.pom.xml
·spring-boot-dependencies:核心依赖在父工程中!
·在写或者引入一些springboot依赖的时候不需要去指定版本,因为有这些版本仓库
2.启动器:
org.springframework.boot
spring-boot-starter
- 启动器就是springboot的启动场景;
- 比如spring-boot-starter-web,它就会帮我们自动导入web环境的所有依赖
- springboot会将所有的功能场景一个个变成启动器
- 如果要使用各种功能,就只需要找到对应的启动器就行了 starter
3.主程序:
//SpringBootApplication 标注这个类是一个springboot的应用: 启动类下的所有资源被导入
@SpringBootApplication
public class HelloworldApplication {
?
public static void main(String[] args) {
//将springboot应用启动
SpringApplication.run(HelloworldApplication.class, args);
}
}
SpringBootApplication这个类主要做以下这四件事:
1.判断应用的类型是普通项目还是web项目
2.查找并加载所有可用的初始化器,设置到initializers属性中
3.找出所有的应用程序监听器,设置到listeners
4判断并设置main方法的定义类,并找到运行的主类
4.自动装配原理注解分析:
@SpringBootConfiguration:springboot的配置
@Configuration:spring配置类
@Component: 说明这也是spring的一个组件
?
@EnableAutoConfiguration :自动配置
@AutoConfigurationPackage:自动配置包
@Import({Registrar.class}):自动配置‘包注册’
@Import({AutoConfigurationImportSelector.class}):自动配置导入选择器(自动导入包的核心)@ComponentScan:扫描当前启动类同级的包//获取所有的配置
List configurations = this.getCandidateConfigurations(annotationMetadata, attributes);
获取候选的配置
protected List getCandidateConfigurations(AnnotationMetadata metadata, AnnotationAttributes attributes) {
List configurations =SpringFactoriesLoader.loadFactoryNames(this.getSpringFactoriesLoaderFactoryClass(), this.getBeanClassLoader());
Assert.notEmpty(configurations, "No auto configuration classes found in META-INF/spring.factories. If you are using a custom packaging, make sure that file is correct.");
return configurations;
}
META-INF/spring.factories:自动配置的核心文件
文章图片
Properties properties = PropertiesLoaderUtils.loadProperties(resource);
//所有的资源加载到配置类中
结论: springboot所有的自动配置都在启动的时候扫描并加载了 spring.factories,但是要判断条件是否成立,只要导入对应的 starter,就有对应的启动器了,所以自动配置才会生效。
1.SpringBoot在启动的时候从该路径下的META-INF/spring.factories中获取EnableAutoConfiguration指定的值
2.将这些值作为自动配置类导入容器,自动配置就会生效,就可以进行自动配置工作了
3.之前需要手动配置的东西,而现在自动配置就都已经解决了
4.整个JavaEE的整体解决方案和自动配置都在spring-boot-test-autoconfigure-2.5.3.jar中
5.它将所需要导入的组件以全类名的方式返回,这些组件就会被添加到容器中
6.它会给容器导入非常多的自动配置类(xxxAutoConfiguration),就是给容器导入场景所需要的所有组件,并且配置好
7.有自动配置类,我们就不要去手动编写配置注入功能组件的工作
5.@Conditional
@Conditional 派生注解作用:
必须是@Conditional指定的条件成立,才给容器中添加组件,配置文件里的所有内容才生效
文章图片
6.自动配置原理分析:
以HttpEncodingAutoConfiguration(HTTP编码格式自动装配)
//表示这是一个配置类,跟之前编写的配置文件一样可以给容器添加组件
@Configuration(
proxyBeanMethods = false
)
?
//自动配置属性:ServerProperties
//启动类的ConfigurationProperties功能:
//点击ServerProperties进行查看,并将配置文件中对应的值和ServerProperties绑定
//并把ServerProperties加到IOC容器中
@EnableConfigurationProperties({ServerProperties.class})
?
//Spring的底层@Conditional注解:根据不同的条件来判断当前配置或者类是否生效,如果满足条件,那么配置类中的配置将会生效
//而此处是判断当前应用是否是web应用,如果是,当前配置类生效
@ConditionalOnWebApplication(
type = Type.SERVLET
)
//spring字符编码过滤器
//解决SpringMVC中的乱码过滤器
@ConditionalOnClass({CharacterEncodingFilter.class})
?
?
//判断配置文件中是否存在某个配置:server.servlet.encoding
//如果不存在,判断也成立
//即使我们不配置server.servlet.encoding.enabled=true,也是默认生效的
@ConditionalOnProperty(
prefix = "server.servlet.encoding",
value = https://www.it610.com/article/{"enabled"},
matchIfMissing = true
)
?
public class HttpEncodingAutoConfiguration {
//说明已经跟SpringBoot的配置文件映射了
private final Encoding properties;
//当只有一个构造器的情况下,参数的值就会从容器中获取
public HttpEncodingAutoConfiguration(ServerProperties properties) {
this.properties = properties.getServlet().getEncoding();
}
//给当前中添加一个组件,这些组件中的一些值需要从properties类中去获取
@Bean
@ConditionalOnMissingBean//判断当前容器中有没有这个组件
public CharacterEncodingFilter characterEncodingFilter() {
CharacterEncodingFilter filter = new OrderedCharacterEncodingFilter();
filter.setEncoding(this.properties.getCharset().name());
filter.setForceRequestEncoding(this.properties.shouldForce(org.springframework.boot.web.servlet.server.Encoding.Type.REQUEST));
filter.setForceResponseEncoding(this.properties.shouldForce(org.springframework.boot.web.servlet.server.Encoding.Type.RESPONSE));
return filter;
}}
}
?
小结:根据当前不同的条件判断来决定这个配置是否生效!
1.所以一旦配置文件生效,这个配置类就会给容器中添加各种组件
2.所以这些组件中属性是从对应的properties类中获取的,但是这些类中的每一个属性又是和配置文件绑定的
3.所以所有的能在配置文件中配置的都在xxxProperties类中封装好了
4.所以配置文件能够配置什么就可以按照某个功能对应的属性类
原理简化:
1.springboot启动时会加载大量的自动配置类
2.试一下我们需要的功能有没有在SpringBoot默认写好的自动配置类当中
3.但在我们这些配置文件中都存在一个固定的规律:
xxxAutoConfiguration:自动配置类,给容器中添加组件
xxxProperties : 封装配置文件中的相关属性
【springboot|Springboot的优点和自动装配原理】4.所以当给容器中自动配置类添加属性的时候,会从properties类中获取某些属性,因此我们只需要在配置文件中指定这些属性即可
推荐阅读
- Spring|SpringBoot基础-Mybatis常用标签
- spring|Springboot自动装配的原理
- 运行Spring Boot APP时出现Spring Boot问题
- springboot项目里,让tk-mybatis支持可以手写sql的mapper.xml文件
- springboot启动逻辑分析一-------new SpringApplication()
- springboot 配置案例 applicaction.yml 配置
- springboot(bootstrap和application有什么区别())
- springboot打包后静态资源webapp文件夹无法打包进去
- SpringBoot之ApplicationRunner接口和@Order注解