From bacb4d1715dd0add5408fc3b4368a449c434fa1d Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 2 Aug 2019 17:12:27 +0200 Subject: [PATCH] Polish "Refine back-off strategy of Neo4j SessionFactory" See gh-17662 --- .../src/main/asciidoc/spring-boot-features.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 938b5cf74b..1d778b1f7a 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -4385,9 +4385,9 @@ properties, as shown in the following example: spring.data.neo4j.password=secret ---- -You can take full control over the session creation by adding a -`org.neo4j.ogm.config.Configuration` `@Bean`. Also, adding a `@Bean` of type -`SessionFactory` disables the auto-configuration and gives you full control. +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.