MONGODB JAVA驱动API文档地址:
http://mongodb.github.io/mongo-java-driver/3.4/javadoc/
DBCollection users = db.getCollection("users");
BasicDBObject user1=new BasicDBObject("name","zj").append("sex","male").append("age","24").append("address",new BasicDBObject("street","chaoyangzhonglu").append("number", "666"));users.insert(user1);
报错The method insert(DBObject[]) in the type DBCollection is not applicable for the arguments (BasicDBObject)
方法:
1.修改JAVA project的java compiler 为1.5以上
2.users.insert(new DBObject[] {user1});