MongoDB Verifique se o campo existe java
DBObject query;
query = new BasicDBObject("fields_name", new BasicDBObject("$exists", true));
DBCursor result = collection.find(query);
Karamolegkos