我想编写一个简单的方法来接收代表 POJO 的 json 并使用该 POJO。
示例(接收和返回 POJO):
@Put("json")
public Representation b(JacksonRepresentation<Device> deviceRepresentation)
throws IOException {
Device device = deviceRepresentation.getObject();
// Use the device
return new JacksonRepresentation<Device>(device);
}
上面的例子抛出了一个异常:Conflicting setter definitions for property "locationRef"...
另一种选择是使用 JsonRepresentation,但我找不到将其转换为 POJO 的方法:
@Put("json")
public Representation b(JsonRepresentation jsonRepresentation) {
// How to convert the jsonRepresentation to a POJO???
return new JsonRepresentation(new Device("2", 2));
}
杰克逊听起来是一个更好的工作工具,因为它具有通用性,因此机械更安全 - 只要它可以工作......