Getest met mongodb-3.4.2 en mongo-java-driver-3.4.2.jar
(1) Gebruik MongoCredential
MongoCredential credential = MongoCredential.createCredential("user", "database", "passwd".toCharArray());
MongoClient mongoClient = new MongoClient(new ServerAddress("localhost", 27017), Arrays.asList(credential));
MongoDatabase db = mongoClient.getDatabase( "test" );
MongoCollection collection = db.getCollection("mycol");
FindIterable fi = collection.find();
MongoCursor cursor = fi.iterator();
(2) Gebruik MongoClientURI
MongoClientURI uri = new MongoClientURI("mongodb://user:[email protected]:27017/?authSource=test");
MongoClient mongoClient = new MongoClient(uri);
Er zijn enkele variantvormen voor het gebruik van MongoCredential en MongoClientURI voor verschillende authenticatiemechanismen, check hier voor details