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.propertiesyou can specify properties in either of these forms:Using
=:Using
:All examples in the Spring docs for
application.propertiesuse=as the delimiter. But Java properties also supports:so by extension Spring (which is utilisingjava.util.Propertiesunder the hood also supports:. Here's the relevant extract from thejava.util.PropertiesJavadoc ...