我有一个非常简单的 POJO,我将其写入 MongoDB。然后它返回包含 _id 属性作为 $oid 对象的 JSON。我想把它写到我的 POJO 中,但到目前为止都失败了。我见过很多人为此苦苦挣扎并提出不同的解决方案,但我还没有让他们中的任何一个起作用。可能是因为没有人提供他们实际使用的库的确切细节。有 codehaus.jackson。* 有 com.fastxml.jackson。, jongo, org.mongo。, com.mongo.* 等
我的对象如下所示:
package com.blueplanetsoftware.metrics.rest;
import javax.persistence.Id;
import com.fasterxml.jackson.annotation.JsonProperty;
public class MongoObject
{
@JsonProperty("_id")
private String _id;
@JsonProperty("userID")
private String userID;
@JsonProperty("appID")
private String appID;
@JsonProperty("message")
private String message = "";
@JsonProperty("session")
private String session;
public MongoObject() {}
/**
* @return the id
*/
@Id
@JsonProperty("_id")
public String getId()
{
return _id;
}
/**
* @param id the id to set
*/
@Id
@JsonProperty("_id")
public void setId(String id)
{
this._id = id;
}
}
我返回的 JSON 如下所示:
{
"userID" : "aap" ,
"appID" : "noot" ,
"message" : "JSON" ,
"session" : "ea944555b5ea8ea6" ,
"_id" : { "$oid" : "5245f1063004348555e54815"}
}
当我尝试使用以下代码将该 JSON 反序列化到我的类中时:
com.fasterxml.jackson.databind.ObjectMapper mapper = new com.fasterxml.jackson.databind.ObjectMapper();
MongoObject o = mapper.readValue(response, MongoObject.class);
它给了我一个例外:
java.lang.AssertionError: Can not deserialize instance of java.lang.String out of START_OBJECT token
at [Source: java.io.StringReader@456c1227; line: 1, column: 93] (through reference chain: com.blueplanetsoftware.metrics.rest.MongoObject["_id"])
那么如何将 _id / $oid 字符串放入我的 _id 属性中呢?我很惊讶没有一种简单的方法可以做到这一点。至少到目前为止我还没有找到。