This commit fixes some inconsistent or outdated keys in the
documentation. More specifically:
* allowSessionOverride is no longer a template parameter
* templateEncoding has been renamed to charSet
* Groovy templates do not have the same configuration hierarchy, hence
they don't share all settings
* spring.data.elasticsearch.local does not seem to exist
* flyway prefix and suffix should be sqlMigrationPrefix and suffix
* spring.rabbitmq.virtualHost had a typo
* endpoints.error.path is not a valid property
* shell.command-path-patterns had a typo
* spring.datasource.max-wait had a typo
Fixes gh-1226
@ -86,9 +86,9 @@ content into your application; rather pick only the properties that you need.
@@ -86,9 +86,9 @@ content into your application; rather pick only the properties that you need.
@ -97,26 +97,23 @@ content into your application; rather pick only the properties that you need.
@@ -97,26 +97,23 @@ content into your application; rather pick only the properties that you need.
@ -128,7 +125,6 @@ content into your application; rather pick only the properties that you need.
@@ -128,7 +125,6 @@ content into your application; rather pick only the properties that you need.
@ -177,7 +173,7 @@ content into your application; rather pick only the properties that you need.
@@ -177,7 +173,7 @@ content into your application; rather pick only the properties that you need.
@ -204,7 +200,6 @@ content into your application; rather pick only the properties that you need.
@@ -204,7 +200,6 @@ content into your application; rather pick only the properties that you need.
spring.data.elasticsearch.cluster-name= # The cluster name (defaults to elasticsearch)
spring.data.elasticsearch.cluster-nodes= # The address(es) of the server node (comma-separated; if not specified starts a client node)
spring.data.elasticsearch.local=true # if local mode should be used with client nodes
spring.data.elasticsearch.repositories.enabled=true # if spring data repository support is enabled
@ -213,8 +208,8 @@ content into your application; rather pick only the properties that you need.
@@ -213,8 +208,8 @@ content into your application; rather pick only the properties that you need.
flyway.locations=classpath:db/migrations # locations of migrations scripts
flyway.schemas= # schemas to update
flyway.initVersion= 1 # version to start migration
flyway.prefix=V
flyway.suffix=.sql
flyway.sql-migration-prefix=V
flyway.sql-migration-suffix=.sql
flyway.enabled=true
flyway.url= # JDBC url if you want Flyway to create its own DataSource
flyway.user= # JDBC username if you want Flyway to create its own DataSource
@ -236,7 +231,7 @@ content into your application; rather pick only the properties that you need.
@@ -236,7 +231,7 @@ content into your application; rather pick only the properties that you need.
@ -356,7 +351,6 @@ content into your application; rather pick only the properties that you need.
@@ -356,7 +351,6 @@ content into your application; rather pick only the properties that you need.
endpoints.jolokia.path=jolokia
endpoints.jolokia.sensitive=true
endpoints.jolokia.enabled=true # when using Jolokia
@ -370,7 +364,7 @@ content into your application; rather pick only the properties that you need.
@@ -370,7 +364,7 @@ content into your application; rather pick only the properties that you need.