Add missing spring-data-cassandra metadata
This commit adds the missing `spring.data.cassandra.repositories.enabled` in the metadata and the documentation. Closes gh-8562
This commit is contained in:
parent
633e75dce2
commit
251090b1e5
|
@ -60,6 +60,12 @@
|
|||
"description": "Enable JMX support (if provided by the underlying pool).",
|
||||
"defaultValue": false
|
||||
},
|
||||
{
|
||||
"name": "spring.data.cassandra.repositories.enabled",
|
||||
"type": "java.lang.Boolean",
|
||||
"description": "Enable Cassandra repositories.",
|
||||
"defaultValue": true
|
||||
},
|
||||
{
|
||||
"name": "spring.data.couchbase.repositories.enabled",
|
||||
"type": "java.lang.Boolean",
|
||||
|
|
|
@ -556,6 +556,7 @@ content into your application; rather pick only the properties that you need.
|
|||
spring.data.cassandra.password= # Login password of the server.
|
||||
spring.data.cassandra.read-timeout-millis= # Socket option: read time out.
|
||||
spring.data.cassandra.reconnection-policy= # Reconnection policy class.
|
||||
spring.data.cassandra.repositories.enabled= # Enable Cassandra repositories.
|
||||
spring.data.cassandra.retry-policy= # Class name of the retry policy.
|
||||
spring.data.cassandra.serial-consistency-level= # Queries serial consistency level.
|
||||
spring.data.cassandra.schema-action=none # Schema action to take at startup.
|
||||
|
|
Loading…
Reference in New Issue