Update 23.2. Accessing command line properties.md

master
qibaoguang 2015-02-08 21:54:10 +08:00
parent ca40266113
commit 3f144afaee
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
### 23.2. 访问命令行属性
默认情况下SpringApplication将任何可选的命令行参数以'--'开头,比如,--server.port=9000转化为property并将其添加到Spring Environment中。如上所述命令行属性总是优先于其他属性源。
如果你不想将命令行属性添加到Environment里你可以使用SpringApplication.setAddCommandLineProperties(false)来禁止它们。