我使用的是Spring Boot及其外部配置功能: https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html
在我的应用程序中,我有一个application.properties
文件,默认配置为:
my.property=one
other.property=two
在生产和测试环境中,我使用Spring Boot的外部配置功能来覆盖某些属性。据我所知,这个配置概念贯穿整个Spring Boot,几乎所有选项都可以在外部配置。
这引出了我的问题: