Skip to content

czetsuya/Hibernate-OGM-MongoDB-Demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hibernate OGM with MongoDB

Author: Edward P. Legaspi Email: czetsuya@gmail.com

Database

Needless to say download or install the latest copy of MongoDB :-).

Here are the commands I've executed in prepping the database for connection.

use test
db.member.insert({"firstName": "Edward"});

db.createUser ({
	"user":"edward",
	"pwd":"edward",
	"roles": [
		{ "role":"readWrite", "db":"test" }
	]
})

// you may want to check if the data is inserted
db.Member.find();

About

Hibernate OGM Demo with MongoDB

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published