我使用Jersey 1.19。我有REST端点,它消耗MULTIPART_FORM_DATA:
@PUT
@Path("/{id}/image")
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Produces(MediaType.APPLICATION_JSON)
public Response putImages(
@PathParam("id") Long id,
@FormDataParam("file") InputStream fullImageStream,
@FormDataParam("file") FormDataContentDisposition fullImageDetails) {
}
目前默认的FormDataContentDisposition配置需要文件名。如何配置FormDataContentDisposition以使字段可选或必须?