> For the complete documentation index, see [llms.txt](https://jack80342.gitbook.io/spring-boot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jack80342.gitbook.io/spring-boot/iv.-spring-boot-features/30.-working-with-nosql-technologies/30.3-neo4j/30.3.3-neo4jsession.md).

# 30.3.3 Neo4jSession

默认地，如果你正在运行一个网络应用，会话会被绑定到请求的整个处理过程的线程上（也就是，它使用“在视图中打开会话”模式）。如果你不想要这个行为，在你的`application.properties`中加入下面这行：

```
spring.data.neo4j.open-in-view=false
```
