See gh-18192
This commit is contained in:
Johnny Lim
2019-09-10 22:29:34 +09:00
committed by Stephane Nicoll
parent 99960b0c26
commit 5b41c3b608
15 changed files with 24 additions and 22 deletions

View File

@@ -779,7 +779,7 @@ In order to document default values for properties in the class above, you could
{"properties": [
{
"name": "acme.messaging.addresses",
"defaultValue": ["a, b"]
"defaultValue": ["a", "b"]
},
{
"name": "acme.messaging.container-type",

View File

@@ -683,7 +683,7 @@ The following `HealthIndicators` are auto-configured by Spring Boot when appropr
| Checks that an Elasticsearch cluster is up.
| {spring-boot-actuator-module-code}/hazelcast/HazelcastHealthIndicator.java[`HazelcastHealthIndicator`]
| Checks that an Hazelcast server is up.
| Checks that a Hazelcast server is up.
| {spring-boot-actuator-module-code}/influx/InfluxDbHealthIndicator.java[`InfluxDbHealthIndicator`]
| Checks that an InfluxDB server is up.

View File

@@ -3984,7 +3984,7 @@ You can configure the uri and credentials to use by setting the `spring.data.neo
spring.data.neo4j.password=secret
----
You can take full control over the session creation by either adding a `org.neo4j.ogm.config.Configuration` bean or a `org.neo4j.ogm.session.SessionFactory` bean.
You can take full control over the session creation by adding either an `org.neo4j.ogm.config.Configuration` bean or an `org.neo4j.ogm.session.SessionFactory` bean.