From 7c02daabc3808535ccfd598d59d4a0b140269e73 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Wed, 30 Nov 2016 10:55:32 +0100 Subject: [PATCH] Polish contribution Closes gh-7533 --- .../src/main/asciidoc/spring-boot-features.adoc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index d4dda9ac88a..07626dd59c9 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -3401,8 +3401,10 @@ persistence for the embedded mode: [[boot-features-neo4j-ogm-session]] ==== Neo4jSession -By default, the lifetime of the session is scope to the application. If you are running a -web application you can change it to scope or request easily: +By default, the lifetime of the session is scoped to the application. If you are running a +web application, you can change it so that the session is bound to the thread for the +entire processing of the request (i.e. the "Open Session in View" pattern): + ---- spring.data.neo4j.open-in-view=true