Spring-boot基础知识
Posted niuyg928
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring-boot基础知识相关的知识,希望对你有一定的参考价值。
三大特性:
1、组件自动装配(web mvc 、web flux、JDBC)
激活:@EnableAutoConfiguration
配置: META-INF/spring.factories
实现:XXXAutoConfiguration
2、嵌入式web容器(Tomcat jetty underTow)
web Servlet:Tomcat jetty underTow
web Reactive:Netty Web Server
3、生产准备特性
指标:/actuator/metrics
健康检查:/actuator/health
外部化配置:/actuator/configprops
以上是关于Spring-boot基础知识的主要内容,如果未能解决你的问题,请参考以下文章
为啥spring-boot应用程序不需要@EnableWebMvc
从Spring-Boot开始深入理解Spring系列——Spring-Boot使用servletsfilterlistenerinterceptor