I've seen different delimeters for properties : = Can't find reference about it.
What is the syntax of Spring Boot "application.properties" file?
2.1k views Asked by Ekaterina At
1
I've seen different delimeters for properties : = Can't find reference about it.
In
application.properties
you can specify properties in either of these forms:Using
=
:Using
:
All examples in the Spring docs for
application.properties
use=
as the delimiter. But Java properties also supports:
so by extension Spring (which is utilisingjava.util.Properties
under the hood also supports:
. Here's the relevant extract from thejava.util.Properties
Javadoc ...