【SpringBoot】最佳实践

  1. 引入场景依赖
    https://docs.spring.io/spring-boot/docs/current/reference/html/using-spring-boot.html#using-boot-starter

  2. 查看自动配置了哪些(选做)
    2.1 自己分析,引入场景对应的自动配置一般都生效了
    2.2 配置文件中debug=true开启自动配置报告。Negative(不生效)\Positive(生效)
    Unconditional,这是未启用的class
    【SpringBoot】最佳实践
    Did not match 未匹配(未生效)
    【SpringBoot】最佳实践
    生效:
    【SpringBoot】最佳实践

  3. 是否需要修改
    • 参照文档修改配置项
    https://docs.spring.io/spring-boot/docs/current/reference/html/appendix-application-properties.html#common-application-properties
    • 自己分析。xxxxProperties绑定了配置文件的哪些。
    • 自定义加入或者替换组件:@Bean、@Component…
    • 自定义器 XXXXXCustomizer;

上一篇:Java虚拟机详解(七)------虚拟机监控和分析工具(1)——命令行


下一篇:【数据库】--关键字汇总