Springboot学习笔记

最近在看Springboot相关的文档,主要是官网上的手册,来补充一下自己的基础,这篇文章记录一些我之前疏漏的知识点。持续更新。
1. 配置文件
springboot中配置文件application.properties的理解
相关知识点:

  • 自定义属性
  • 参数间引用使用${}
  • 自定义配置文件
  • 随机值配置${random.*}
  • 配置文件优先级
  • Profile多环境配置

2. yml文件配置

YAML在SpringBoot的作用和机制
YAML属性配置文件使用详解

注意:Yaml无法使用 @PropertySource注解

YAML files cannot be loaded by using the @PropertySource annotation. So, in the case that you need to load values that way, you need to use a properties file.

你可能感兴趣的:(Springboot学习笔记)