Spring Boot "application.properties" 文件的语法是什么?
What is the syntax of Spring Boot "application.properties" file?
我见过不同的属性分隔符
: =
找不到相关参考。
在 application.properties
中,您可以使用以下任一形式指定属性:
使用=
:
key=value
使用:
key: value
Spring 文档中 application.properties
的所有示例都使用 =
作为分隔符。但是 Java 属性也支持 :
,所以通过扩展 Spring(它在幕后利用 java.util.Properties
也支持 :
。这是 [= 的相关摘录16=] Java文档 ...
The key contains all of the characters in the line starting with the first non-white space character and up to, but not including, the first unescaped '=', ':', or white space character other than a line terminator.
我见过不同的属性分隔符 : = 找不到相关参考。
在 application.properties
中,您可以使用以下任一形式指定属性:
使用
=
:key=value
使用
:
key: value
Spring 文档中 application.properties
的所有示例都使用 =
作为分隔符。但是 Java 属性也支持 :
,所以通过扩展 Spring(它在幕后利用 java.util.Properties
也支持 :
。这是 [= 的相关摘录16=] Java文档 ...
The key contains all of the characters in the line starting with the first non-white space character and up to, but not including, the first unescaped '=', ':', or white space character other than a line terminator.