4

我有一个非常简单的 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 属性中呢?我很惊讶没有一种简单的方法可以做到这一点。至少到目前为止我还没有找到。

4

1 回答 1

4

你有没有尝试过?

@ObjectId @Id 
private String id;

我写了一个测试来看看这个工作:

@Test
public void shouldConvertJSONStringIntoPojo() throws IOException {
    ObjectMapper mapper = new ObjectMapper();
    MongoObject actual = mapper.readValue("{\n" +
                                     "        \"userID\" : \"aap\" ,\n" +
                                     "        \"appID\" : \"noot\" ,\n" +
                                     "        \"message\" : \"JSON\" ,\n" +
                                     "        \"session\" : \"ea944555b5ea8ea6\" ,\n" +
                                     "        \"_id\" : { \"$oid\" : \"5245f1063004348555e54815\"}\n" +
                                     "}", MongoObject.class);

    assertThat(actual, equalTo(new MongoObject("5245f1063004348555e54815", "aap", "noot", "JSON", "ea944555b5ea8ea6")));
}

我为此使用的库:

import com.fasterxml.jackson.databind.ObjectMapper; (jackson-databind-2.1.4,jar)
import org.junit.Test;                              (junit-4.11.jar)
import static org.hamcrest.CoreMatchers.equalTo;    (hamcrest-core-1.3.jar)
import static org.junit.Assert.assertThat;          (junit-4.11.jar)

我对问题中发布的 MongoObject 所做的唯一更改是添加一个构造函数,该构造函数采用所有字段以及 hashCode、equals 和 toString(以便我可以对其进行测试)。如果我使用该 MongoObject 运行该测试,那么我会得到与您相同的错误:

com.fasterxml.jackson.databind.JsonMappingException: Can not deserialize instance of java.lang.String out of START_OBJECT token
 at [Source: java.io.StringReader@7a7ff2aa; line: 5, column: 40] (through reference chain: MongoObject["_id"])
    at com.fasterxml.jackson.databind.JsonMappingException.from(JsonMappingException.java:164)
    at com.fasterxml.jackson.databind.DeserializationContext.mappingException(DeserializationContext.java:599)

但是如果我对你的 MongoObject 做一点小改动:

public class MongoObject
{
    @JsonProperty("_id")
    @org.jongo.marshall.jackson.oid.ObjectId
    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() {}

//... insert constructors, hashCode, equals and toString just for testing...
}

然后测试通过。

于 2013-10-23T15:24:02.107 回答