Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 509 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 509 Bytes

Hibernate OGM with MongoDB

Author: Edward P. Legaspi Email: [email protected]

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();