12 Links for Java Mongo Devs
This 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”);
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)





