https://github.com/soujava/jnosql-1-0-se
This is a sample project running on Java SE, MongoDB and Eclipse JNoSQL new version
https://github.com/soujava/jnosql-1-0-se
Last synced: 3 months ago
JSON representation
This is a sample project running on Java SE, MongoDB and Eclipse JNoSQL new version
- Host: GitHub
- URL: https://github.com/soujava/jnosql-1-0-se
- Owner: soujava
- License: apache-2.0
- Created: 2023-07-03T09:43:15.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-07T12:58:04.000Z (almost 2 years ago)
- Last Synced: 2025-01-27T10:45:04.464Z (5 months ago)
- Language: Java
- Size: 26.4 KB
- Stars: 2
- Watchers: 15
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Eclipse JNoSQL 1.0.0 sample release
This is a sample project running on Java SE, MongoDB, and Eclipse JNoSQL's new version: 1.0.0
image::http://www.jnosql.org/img/logos/mongodb.png[MongoDB, width=200px]
**Mongodb**: MongoDB is a free and open-source cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with schemas.
== 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/_/mongo
1. Run docker command:[source, bash]
----
docker run -d --name mongodb-instance -p 27017:27017 mongo
----