SpringBoot 结合profile配置多环境
程序员文章站
2022-05-07 23:09:16
...
简要说明:
目录
src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ ├── Application.java
│ │ └── resources
│ │ ├── application-dev.properties
│ │ ├── application-prod.properties
│ │ ├── application-test.properties
│ │ ├── application.properties
SpringBoot会默认加载application.properties,如何加载application-${profile}.properties呢?
可以在 application.properties 中设置参数:
[email protected]@
上一篇: python爬虫学习:第三章:数据解析
下一篇: 将python包上传到PyPI