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
- Host: GitHub
- URL: https://github.com/soujava/intro-graph-2025
- Owner: soujava
- License: apache-2.0
- Created: 2025-05-05T17:43:56.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-05-21T03:19:40.000Z (6 months ago)
- Last Synced: 2025-06-09T18:49:13.235Z (5 months ago)
- Language: Java
- Size: 500 KB
- Stars: 0
- Watchers: 13
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
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
----