使用JAVA向MongoDB中插入数据时报错The method insert(DBObject[]) in the type DBCollection is not applicable

来源:互联网 发布:cmd 关闭端口 编辑:程序博客网 时间:2024/06/05 03:47

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});

阅读全文
0 0
原创粉丝点击