Commit d5732afa authored by Stephane Nicoll's avatar Stephane Nicoll

Add missing configuration entry

parent 0e10dbc2
...@@ -66,6 +66,12 @@ ...@@ -66,6 +66,12 @@
"description": "Enable JMX support (if provided by the underlying pool).", "description": "Enable JMX support (if provided by the underlying pool).",
"defaultValue": false "defaultValue": false
}, },
{
"name": "spring.data.couchbase.repositories.enabled",
"type": "java.lang.Boolean",
"description": "Enable Couchbase repositories.",
"defaultValue": true
},
{ {
"name": "spring.data.elasticsearch.repositories.enabled", "name": "spring.data.elasticsearch.repositories.enabled",
"type": "java.lang.Boolean", "type": "java.lang.Boolean",
......
...@@ -494,6 +494,7 @@ content into your application; rather pick only the properties that you need. ...@@ -494,6 +494,7 @@ content into your application; rather pick only the properties that you need.
spring.data.couchbase.bucket.name= # Name of the bucket to connect to. spring.data.couchbase.bucket.name= # Name of the bucket to connect to.
spring.data.couchbase.bucket.password= # Password of the bucket. spring.data.couchbase.bucket.password= # Password of the bucket.
spring.data.couchbase.consistency=read-your-own-writes # Consistency to apply by default on generated queries. spring.data.couchbase.consistency=read-your-own-writes # Consistency to apply by default on generated queries.
spring.data.couchbase.repositories.enabled=true # Enable Couchbase repositories.
# ELASTICSEARCH ({sc-spring-boot-autoconfigure}/elasticsearch/ElasticsearchProperties.{sc-ext}[ElasticsearchProperties]) # ELASTICSEARCH ({sc-spring-boot-autoconfigure}/elasticsearch/ElasticsearchProperties.{sc-ext}[ElasticsearchProperties])
spring.data.elasticsearch.cluster-name=elasticsearch # Elasticsearch cluster name. spring.data.elasticsearch.cluster-name=elasticsearch # Elasticsearch cluster name.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment