I have used some properties to deploy my task on Spring Cloud Data Flow. For example:
spring.cloud.dataflow.features.schedules-enabled: true
spring.datasource.url=
spring.datasource.username=
spring.datasource.password=
spring.datasource.driver-class-name=
spring.datasource.initialization-mode=
However I can not found any documents about the summary of these properties. How can I discover more properties to apply to my project? And I have also confused about ":" or "=". Which one is valid?
You can refer to Spring official website for this.
Take 2.0.0.RELEASE
for example, you can find Common application properties HERE.
And for Spring Cloud Data Flow, you can find Configuration HERE for Local/PCF/K8s.
Or if you are using STS(Spring Tool Suite) as your IDE, you can also find a list of allowable properties while keying property in .properties
or .yml
files.