2015-02-08 14:00:33 +00:00
|
|
|
|
### 23.5. 属性占位符
|
|
|
|
|
|
|
|
|
|
当application.properties里的值被使用时,它们会被存在的Environment过滤,所以你能够引用先前定义的值(比如,系统属性)。
|
|
|
|
|
```java
|
|
|
|
|
app.name=MyApp
|
|
|
|
|
app.description=${app.name} is a Spring Boot application
|
|
|
|
|
```
|
|
|
|
|
**注**:你也能使用相应的技巧为存在的Spring Boot属性创建'短'变量,具体参考[Section 63.3, “Use ‘short’ command line arguments”](http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-use-short-command-line-arguments)。
|