Java:使用HttpServletRequest从POST获取JSON?

时间:2015-03-06 09:36:51

标签: java json post

我试图通过使用HttpServletRequest或UriInfo来获取POST请求的主体。鉴于此类课程(针对此问题进行了简化):

@Path("/nodes")
@Produces({ MediaType.APPLICATION_JSON })
@Consumes({ MediaType.APPLICATION_JSON })
public class Nodes {
    public NodeResource() {
        //initial stuff goes here
    }

    /**
     * gives an empty response. For testing only!
     */
    @POST
    @Consumes("application/json")
    @Path("{id}/test-db-requests")
    public Response giveNodes(@PathParam("id") final String id, @Context HttpServletRequest request, @Context UriInfo uriInfo){
        //String readReq = request.getQueryString(); //would work for GET
        MultivaluedMap<String,String> readParams = uriInfo.getQueryParameters();
        LOG.debug("what is readParams?", readParams); //goes, but shows nothing
        if (readParams != null) {
            LOG.debug("null or not?"); //goes, too
            for (Map.Entry<String,List<String>> entry: readParams.entrySet()) {
                List<String> values = entry.getValue();
                LOG.debug("params POST key: {}", entry.getKey()); // goes not
                for (String val: values) {
                    LOG.debug("params POST values: {}", val);
                }
                LOG.debug("params POST next entry:::");
            }
        }
        List<?> results = null; //currentDBRequest(id);
        List<?> content = new ArrayList<>();
        if (results != null) {
            content = results;
        }
        return Response.ok(content).build();
    }
}

而不是使用

MultivaluedMap<String,String> readParams = uriInfo.getQueryParameters();
//not possible at all - for GET only!? See first comment.

我也尝试使用

Map<String,String[]> readParams = request.getParameterMap();
//what is about this one?

当然有不同的代码。但这也行不通。

因此,当我使用以下正文

触发/nodes/546c9abc975a54c398167306/test-db-requests这样的简单请求时
{
    "hi":"hello",
    "green":"tree"
}

(使用JSON数组不会改变任何东西)
和HEADER中的东西(一些信息):

  • Content-Type: application/json; charset=UTF-8
  • Accept: application/json, text/plain, */*
  • Connection: keep-alive

结果令人失望,readParams不是null,但不包含任何数据。在我开始玩getReader之前,我想问:我做错了什么?在我的POST,我的Java代码或使用过的HttpServletRequest方法中是否存在问题?谢谢!


相关问题(我找到了一些可能的解决方案),其中包括:

1 个答案:

答案 0 :(得分:0)

好吧,杰克逊实际上会为我做这件事。只需使用您要使用的方法的参数。 (见下面的例子。)

您可能不会将POST与 id参数结合使用。 POST通常用于保存新资源,这些资源没有id(在DB中,是主键)。此外,路径/api/{resource_name}/{id}/{some_view}对GET很有用。只需api/{resource_name}/{id}即可获得GET(单项)或PUT(更新现有条目)。

假设您在Pet.class的资源中。您希望捕获此类的POST,以便根据视图test-db-requests对它们执行特殊操作。然后做:

@POST
@Consumes("application/json")
@Path("{id}/test-db-requests")
public Response giveNodes(final String pet, @PathParam("id") final String id){

    //do stuff for POST with a strigified JSON here

}

@POST
@Path("{id}/test-db-requests")
public Response giveNodes(final Pet pet, @PathParam("id") final String id){

    //do stuff for POST with an instance of pet here (useful for non
    //polymorphic resources

}