12 Links for Java Mongo Devs
Join the DZone community and get the full member experience.
Join For FreeThis class has been going great.
The flow of the class is great and it’s worked well on Windows with Eclipse, Maven and JDK 1.6.
Some notes and links:
BSON
document oriented database
The Spark web framework for Java is nice, very small and simple.
MongoClient client = new MongoClient();
DB db = client.getDB(“school”);
DBCollection people = db.getCollection(“people”);
DB db = client.getDB(“school”);
DBCollection people = db.getCollection(“people”);
Java (programming language)
Links
Published at DZone with permission of Tim Spann, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments