0

我正在尝试发送请求,我在 curl 中执行以下操作:

curl -v --header "location: 60.004:8.456" --cookie "sessionToken=~session" -i -X PUT -H 'Content-Type: application/json' -d '{"data":"{"FCT":"Welcome", "Uni":"Welcome to DI"}"}' localhost:8080/tester/apps/e39/data

并且由于某种原因它匹配类但没有这个方法:

@PUT
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Response createDocumentRoot(JSONObject inputJsonObj,
        @Context UriInfo ui, @Context HttpHeaders hh) {
}

编辑:该类是用 @Path("{appId}/data") 定义的

问题不在于路径,因为我已经调试过它并看到它正确识别了类,它只是在进入类后抛出错误请求而没有输入任何方法。

这是 curl 的详细说明:

* About to connect() to localhost port 8080 (#0)
*   Trying 127.0.0.1... connected
> PUT /tester/apps/e39/data HTTP/1.1
> User-Agent: curl/7.22.0 (i686-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4                         libidn/1.23 librtmp/2.3
> Host: localhost:8080
> Accept: */*
> Cookie: sessionToken=~session
> location: 60.004:8.456
> Content-Type: application/json
> Content-Length: 60
> 
* upload completely sent off: 60out of 60 bytes
< HTTP/1.1 400 Bad Request
HTTP/1.1 400 Bad Request
< Server: Apache-Coyote/1.1
Server: Apache-Coyote/1.1
< Content-Type: text/html;charset=utf-8
Content-Type: text/html;charset=utf-8
< Content-Length: 990
Content-Length: 990
< Date: Tue, 02 Jul 2013 21:46:56 GMT
Date: Tue, 02 Jul 2013 21:46:56 GMT
< Connection: close
Connection: close
4

1 回答 1

0

问题出在不正确的 json 语法中,我有

'{"data":"{"FCT":"Welcome", "Uni":"Welcome to DI"}"}'

改成这个后,它工作正常:

'{"data":
{"FCT":"Welcome",
"Uni":"Welcome to DI"}}'

我使用 JSON 在线解析器来检查 json 语法,如果有人需要,这里是链接:http: //json.parser.online.fr/

于 2013-07-03T09:47:20.270 回答