0

我想编写一个简单的方法来接收代表 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));
}

杰克逊听起来是一个更好的工作工具,因为它具有通用性,因此机械更安全 - 只要它可以工作......

4

1 回答 1

3

Ne 需要使用任何表示对象。以下效果很好,在后台使用杰克逊:

@Put
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public Device b(Device device) {
    // Do something with the POJO!!!
    return device;
}

它转换输入并转换输出。这是它如何工作的 curl 示例:

curl -i -X PUT -H 'Content-Type: application/json' -d '{"port":3,"ip":"3"}' http://localhost:8888/restlet/

结果:

HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8
Date: Sun, 13 Oct 2013 02:03:48 GMT
Accept-Ranges: bytes
Server: Development/1.0
Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
Cache-Control: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Content-Length: 19

{"ip":"3","port":3}
于 2013-10-13T02:09:31.640 回答