我正在尝试使用org.codehaus.jackson.map.deser.std.StdDeserializer
来执行自定义反序列化。
我的主要目标是能够连接到 Jetty 的 JSON 处理结构并使用 Jackson 而不是默认的 JettyJSON。
所以现在,我正在测试这是否有效。
我有一个测试尝试读取一个简单的 JSON 字符串并将其转换为 Presence 对象。
public void testBasicJson() throws JsonParseException,
JsonMappingException,
IOException {
ObjectMapper mapper = new ObjectMapper();
JsonObjectDeserializer jod = new JsonObjectDeserializer();
SimpleModule module = new SimpleModule("JsonObjectDeserializer",
new Version(1, 0, 0, null));
module.addDeserializer(JsonObject.class, jod);
mapper.registerModule(module);
//formatted for easy reading
String jsonSimple = "{
\"userEmail\":\"user1@lab.com\",
\"type\":\"presence\",
\"domain\":\"lab.com\"
}";
JsonObject pres = mapper.readValue(jsonSimple, JsonObject.class);
System.out.println(pres.toString());
}
存在类是:
public class Presence extends JsonObject {
private static final long serialVersionUID = 1L;
protected String userEmail;
protected String domain;
protected String type;
public Presence() {
}
//necessary GETTERs and SETTERs are created for userEmail, domain and type
public String toString() {
StringBuffer sb = new StringBuffer("\tuser: ");
sb.append(userEmail);
sb.append(" - ");
sb.append(domain);
return sb.toString();
}
}
父类是:
import org.cometd.server.ServerMessageImpl;
public abstract class JsonObject extends ServerMessageImpl {
private static final long serialVersionUID = 1L;
}
自定义解串器是:
import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.JsonProcessingException;
import org.codehaus.jackson.JsonToken;
import org.codehaus.jackson.map.DeserializationContext;
import org.codehaus.jackson.map.deser.std.StdDeserializer;
public class JsonObjectDeserializer extends StdDeserializer<JsonObject> {
public JsonObjectDeserializer() {
super(JsonObject.class);
}
@Override
public JsonObject deserialize(JsonParser jp, DeserializationContext ctxt)
throws IOException, JsonProcessingException {
//so I'm at a loss at this point
//if (jp.nextToken() != JsonToken.START_OBJECT) {
// throw new IOException("Invalid");
//}
}
}
我面临的问题是反序列化器的部分。尝试使用 JsonParser 读取令牌不起作用,因为它总是返回 null。
我坚信我非常接近解决方案,并且在反序列化器中只缺少一件事。我只需要一些指导来达到最终目标。
任何帮助表示赞赏!