An open API service indexing awesome lists of open source software.

https://github.com/soujava/intro-graph-2025

Introduction to Graph Database using Eclipse JNoSQL
https://github.com/soujava/intro-graph-2025

Last synced: 3 months ago
JSON representation

Introduction to Graph Database using Eclipse JNoSQL

Awesome Lists containing this project

README

          

= JNoSQL examples code
:toc: auto

== Introduction

Java SE sample using NoSQL with Jakarta NoSQL.

This project contains several projects with the primary goal of exploring the Jakarta NoSQL on several databases.

=== Neo4J

image::https://www.jnosql.org/img/logos/neo4j.png[Neo4J, width=200px]

Neo4j is a graph database management system developed by Neo4j, Inc. The data elements Neo4j stores are nodes, edges connecting them, and attributes of nodes and edges.

==== How to install with Docker

image::https://d1q6f0aelx0por.cloudfront.net/product-logos/library-docker-logo.png[]

1. Install docker: https://www.docker.com/
1. https://hub.docker.com/_/neo4j
1. Run docker command:

[source, bash]
----
docker run --publish=7474:7474 --publish=7687:7687 --env NEO4J_AUTH=neo4j/admin123 neo4j:5.26.3
----