当团队壮大后,往往不需要让开发人员关心各个环境细节,一般由模块负责人或者运维集中维护,我们团队由运维提供组件部署信息,模块负责人维护各自环境配置
为合理灵活的支持配置管理,springboot提供覆盖性,优先级化的加载顺序
目前工程只用了command line、内外部yaml文件配置、部分工程用了OS environment variables.
Externalized Configuration
Spring Boot lets you externalize your configuration so that you can work with the same application code in different environments. You can use properties files, YAML files, environment variables, and command-line arguments to externalize configuration. Property values can be injected directly into your beans by using the @Value
annotation, accessed through Spring’s Environment
abstraction, or be through @ConfigurationProperties
.
Spring Boot uses a very particular PropertySource
order that is designed to allow sensible overriding of values. Properties are considered in the following order:
- on your home directory (
~/.spring-boot-devtools.properties
when devtools is active). - annotations on your tests.
properties
attribute on your tests. Available on and the .- Command line arguments.
- Properties from
SPRING_APPLICATION_JSON
(inline JSON embedded in an environment variable or system property). ServletConfig
init parameters.ServletContext
init parameters.- JNDI attributes from
java:comp/env
. - Java System properties (
System.getProperties()
). - OS environment variables.
- A
RandomValuePropertySource
that has properties only inrandom.*
. - outside of your packaged jar (
application-{profile}.properties
and YAML variants). - packaged inside your jar (
application-{profile}.properties
and YAML variants). - Application properties outside of your packaged jar (
application.properties
and YAML variants). - Application properties packaged inside your jar (
application.properties
and YAML variants). - annotations on your
@Configuration
classes. - Default properties (specified by setting
SpringApplication.setDefaultProperties
).
To provide a concrete example, suppose you develop a @Component
that uses a name
property, as shown in the following example:
import org.springframework.stereotype.*;import org.springframework.beans.factory.annotation.*;@Componentpublic class MyBean { @Value("${name}") private String name; // ...}
On your application classpath (for example, inside your jar) you can have an application.properties
file that provides a sensible default property value for name
. When running in a new environment, an application.properties
file can be provided outside of your jar that overrides the name
. For one-off testing, you can launch with a specific command line switch (for example, java -jar app.jar --name="Spring"
).
The SPRING_APPLICATION_JSON
properties can be supplied on the command line with an environment variable. For example, you could use the following line in a UN*X shell:
$ SPRING_APPLICATION_JSON='{"acme":{"name":"test"}}' java -jar myapp.jar
In the preceding example, you end up with acme.name=test
in the Spring Environment
. You can also supply the JSON as spring.application.json
in a System property, as shown in the following example:
$ java -Dspring.application.json='{"name":"test"}' -jar myapp.jar
You can also supply the JSON by using a command line argument, as shown in the following example:
$ java -jar myapp.jar --spring.application.json='{"name":"test"}'
You can also supply the JSON as a JNDI variable, as follows: java:comp/env/spring.application.json
参考文档: