Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 810 Bytes

File metadata and controls

29 lines (17 loc) · 810 Bytes

JNoSQL examples code

Table of Contents

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

Neo4J

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

library docker logo
  1. Install docker: https://www.docker.com/

  2. https://hub.docker.com/_/neo4j

  3. Run docker command:

docker run --publish=7474:7474 --publish=7687:7687 --env NEO4J_AUTH=neo4j/admin123 neo4j:5.26.3