TL;DR: Don’t use Open Session in View with a Neo4j-Cluster If you use Spring Data Neo4j and Neo4j-OGM in your Spring Boot application connectect against a Neo4j cluster (via bolt+routing://, neo4j:// or multiple bolt-uris), configure spring.data.neo4j.open-in-view explicitly to false like this: spring.data.neo4j.open-in-view=false What is Open Session in View? Vlad Mihalcea has written extensive amounts about […]
This is the forth post in this series and I want to keep it short and simple. A domain can be modeled in many ways and so can databases. As long as I deal with them, I always preferred the approach: Database (model) first. Usually, data is much longer around than applications and I don’t […]
In the previous post I presented various ways how to get data into Neo4j. Now that you have a lot of connected data and it’s attributes, how to access, manipulate, add to them and delete them? I’m working with and in the Spring ecosystem quite a while now and for me the straight answer is […]