spring boot 三大特性

  • 组件自动装配:Web MVC、Web Flux、JDBC等
  • 嵌入式Web容器:Tomcat、Jetty以及Undertow
  • 生产准备特性:指标、健康检查、外部化配置等
    组件的自动装配
  • **:@EnableAutoConfiguration
  • 配置:/META-INF/spring.factories
  • 实现:xxxAutoConfiguration

springboot笔记
springboot笔记

springboot笔记
嵌入式Web容器

  • Web Servlet:Tomcat,jetty和Undertow
  • Web Reactive:Netty Web Server

生产准备特性
指标:/actuator/metrics
健康检查:/actuator/health
外部化配置:/actuator/configprops

相关文章:

  • 2021-11-19
  • 2021-09-18
  • 2022-01-17
  • 2021-07-21
  • 2021-06-24
  • 2021-09-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-16
  • 2022-01-10
  • 2022-12-23
相关资源
相似解决方案