Description
For Java developers who use the Spring Framework or Spring Boot and want to take advantage of reactive development principles, this guide introduces Spring integration through the Spring Data Neo4j pr ...
Summary
- Spring Data Neo4j Goals For Java developers who use the Spring Framework or Spring Boot and want to take advantage of reactive development principles, this guide introduces Spring integration through the Spring Data Neo4j project.
- This way, you can map differences between application entities and database domains.
- Movie repository For our application, we need to interact with a Neo4j graph database, so we will create an interface that extends the repository for Neo4j.
- We will also pass a title (a String) to the method because we want to allow the user to enter any movie title as the search value.