Deployment Manual / Version 2107
Table Of Contents
Properties can be configured via Spring Boot. You can use application.properties, system properties, environment variables in uppercase and many more. See https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html for details.
Spring's relaxed binding also allows for different notations of property names like snake or camel case, but the default is 'kebap case' (separating words with dashes). Generally a dot in a property name reflects some kind of logical hierarchy. List-valued properties are zero-based and use bracket notation (x.y.1.* -> x.y[0].*)
Note
Configuration properties that are defined in the Blueprint may be missing here.
Therefore, also check the Blueprint sources for classes annotated with
ConfigurationProperties
and use their JavaDoc.