我有一个看起来像这样的REST端点
@POST
@Path(upload)
@Consumes(MediaType.APPLICATION_OCTET_STREAM)
public Response uploadTest(
@ApiParam(value="uploaded file", required = true) File file) {
//TODO process file
return Response.ok().build();
}
我想向其中上传文件,主要是.csv文件。
我不确定要使用哪种MediaType(八位字节流?文本/纯文本?),以及我的参数要使用哪种类型(文件?InputStream?某种Multipart东西?)。