以下是 Mongo DB 中存在的数据{"name":"john","id":"123","location":"Pune"}{"name":"steve","id":"456","location":"Noida"}我想将“id”更新为“789”,将“name”更新为“alex”,其中“name”:“john”和“location”:“Pune”,并且根据 upsert 功能,如果查询条件不存在,然后它需要创建一个新条目。我正在使用以下逻辑使用 Bson 过滤器执行此操作,但出现以下异常Bson filter=null;Bson update=null;filter=combine(eq("name":"john"),eq("location":"Pune"));update=combine(eq("id":"123"),eq("name":"alex"));UpdateOptions options = new UpdateOptions();options.upsert(true);dbCollection.updateMany(filter, update,options);我期待我的 Mongo DB 数据发生以下变化:{"name":"alex","id":"789","location":"Pune"}但我低于异常:Exception is java.lang.IllegalArgumentException: Invalid BSON field name portalIDjava.lang.IllegalArgumentException: Invalid BSON field name portalIDat org.bson.AbstractBsonWriter.writeName(AbstractBsonWriter.java:532)有人可以建议我吗?
1 回答
紫衣仙女
TA贡献1839条经验 获得超15个赞
试试下面的代码:
Bson filter = null;
Bson update = null;
filter = and(eq("name", "john"), eq("location", "Pune"));
update = combine(set("id", "789"), set("name", "alex"));
UpdateOptions options = new UpdateOptions();
options.upsert(true);
dbCollection.updateMany(filter, update, options);
添加回答
举报
0/150
提交
取消