springboot配置文件优先级

 

.
├── config
│   ├── application.yml (优先级1)
│   ├── application-dev.yml (优先级1)
├── pom.xml
├── src
├── application.yml (优先级2)
├── application-dev.yml (优先级2)
│   ├── main
│   │   └── resources
│   │       ├── application.yml (优先级3)
│   │       ├── application-dev.yml (优先级3)

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