Spring Data Neo4j - Developer Guides

By Neo4j Graph Database Platform - 2021-01-05

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.

 

Topics

  1. Database (0.35)
  2. Backend (0.25)
  3. Frontend (0.08)

Similar Articles

What is JSON? And why do you need it?

By DEV Community - 2020-12-27

Before going on to the topic JSON, I would like to discuss a simple example because it will be a lot... Tagged with javascript, beginners, tutorial, webdev.

7 Ways Your Data Is Telling You It’s a Graph

By Neo4j Graph Database Platform - 2015-12-23

Watch (or read) Senior Project Manager Karen Lopez’s GraphConnect presentation on the signs that your data is actually a graph and needs a graph database.

How to use IndexedDB to build Progressive Web Apps

By Medium - 2020-09-01

In this previous post, I talked about implementation of IndexedDB inside Service Workers. If you don’t understand that part, please read that article to clear up some concepts about service workers…