MongoDB проверьте, существует ли поле Java

DBObject query;
query = new BasicDBObject("fields_name", new BasicDBObject("$exists", true));
DBCursor result = collection.find(query);
Karamolegkos