Pathparam和Queryparam中的URL

时间:2017-06-07 20:41:10

标签: javascript java rest query-parameters path-parameter

尝试使用此404 error方法时,我得到POST

@POST
@Path("/upload/new/{containerId}")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.MULTIPART_FORM_DATA)
public Response create(@PathParam("containerId") String containerId,@QueryParam("documentType") DocumentType documentType, MultipartFormDataInput request) {
 ...
}

url-exemple是否正确? :.../rest/upload/new/110/?documentType=logo

如果不是,我应该如何使用此QueryParams ?documentType

来覆盖它

0 个答案:

没有答案