SpringBoot:自动配置报告

自动配置报告demo:点击查看 LearnSpringBoot03AutoConfig

点击查看更多的SpringBoot教程

一、application.properties代码

#开启springboot debug模式
#自动配置报告
#Positive matches: 自动配置类启用了(自动配置类匹配上了),例如:AopAutoConfiguration matched:
#Negative matches: 自动配置类没有启用(没有匹配上的),例如: ActiveMQAutoConfiguration: Did not match:
#开启debug=true属性,让控制台打印自动配置报告,可以很方便地知道哪些自动配置类生效了
debug=true
server.port=8086

#https://blog.csdn.net/taiyangdao/article/details/80977910
#能配置的属性都来源于这个功能的properties类
#例如: HttpEncodingProperties.java 类
#过时了
#spring.http.encoding.enabled=true
#使用下面的方式,直接点击http2查看里面的代码
server.http2.enabled=true
server.servlet.encoding.charset=utf-8
server.servlet.encoding.force=true

二、查看自动配置报告

匹配成功的自动配置类
SpringBoot:自动配置报告_第1张图片

没有匹配上的自动配置类
SpringBoot:自动配置报告_第2张图片

你可能感兴趣的:(#,Spring,Boot,spring,boot,后端,java)