1

在 NetBeans 中,我使用内置向导创建了一个新的 REST Web 服务(使用 jersey)。在容器资源类中,它创建了一个存根,

@POST
@Consumes("application/json")
@Produces("application/json")
public Response postJson(Identity identity) {
    identities.addIdentity(identity);
    return Response.status(Status.OK).entity(identity).build();
}

我如何发布到这个?我的理解是需要发布 name=val 对。球衣在这里期待什么?我将如何使用说 curl 将 json 发布到此?这是我尝试过的,

#!/bin/bash

DATA="{ \"id\": \"$1\", \"vcard\": \"$2\", \"location\": { \"latitude\": \"$3\", \"longitude\": \"$4\" } }"
echo "posting: $DATA"
HEADER='Content-Type:application/json'
URL='http://localhost:8080/contacthi-proximity-service/resources/is'
curl --data-binary "${DATA}" -H "${HEADER}" "${URL}"

当我发布这个并查看进来的身份对象时,所有字段都是空的?我怀疑我的 json 不正确。当我手动将一个对象添加到我的容器中,然后形成一个 get,我看到了这个结果,

{"identities":{"id":"Foo Bar","vcard":"VCARD123","location":{"latitude":"-1.0","longitude":"-1.0"}}}

当我尝试发布相同的内容时,所有字段都为空。我也试过,

{"id":"Foo Bar","vcard":"VCARD123","location":{"latitude":"-1.0","longitude":"-1.0"}}

同样的结果。

4

1 回答 1

1

要使用 curl 向此方法发送请求,您必须使用以下内容:

HEADER='--header Content-Type:application/json'
URL='http://localhost:<port>/methodName'
curl --data-binary request.json ${HEADER} ${URL} -D response.txt

您可以将字符串传递给该方法。上面的代码将从提到的文件中选择 json 字符串。示例 json 可以是:

{"userName":"test","timestamp":"2010-08-05T11:35:32.982-0800","userId":"0982"}

要创建响应,您可以使用以下内容:

return Response.status(Status.OK).entity(responseString).build();

使用的类是:

import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
于 2011-01-25T17:58:43.217 回答