我正在尝试使用http builder-groovy在服务器上传多个文件。以下代码不起作用。获取错误“请求实体太大”。我已导入所有包并定义了所有变量。
使用restclient-groovy还有其他选择吗?
任何人都可以说出理由吗?
提前感谢。
def file = new File("resources/IMG.JPG")
def file1 = new File("resources/aa.json")
http = new HTTPBuilder( url )
http.request (POST, JSON) { multipartRequest ->
uri.path = '/server/upload'
uri.query = [param1:value, param2:value, param3:value, param4:value]
requestContentType = 'multipart/form-data'
MultipartEntity mpe = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE)
mpe.addPart( "jpeg", new FileBody(( File ) file , 'image/jpeg' ))
mpe.addPart( "json", new FileBody(( File ) file1 , 'application/json' ))
multipartRequest.setEntity(mpe)
response.success = { resp, json->
println "POST response status: ${resp.statusLine}"
println "Query response: ${json}"
}
response.failure = { resp ->
println "POST response statusline: ${resp.statusLine}"
}
}
答案 0 :(得分:1)
您实际上可以使用RestAssured框架轻松地形成多部分请求。
以下是一个例子,
@Test
public void multiExample()
{
given().
multiPart("image", new File("resources/a.jpg"), "image/jpeg").
multiPart("lgdata", new File("resources/myfile.json"), "application/json").
expect().
body("result", is("OK")).
when().
post(url);
}
答案 1 :(得分:0)
根据维基百科:
413请求实体太大
请求大于服务器愿意或能够处理的请求。
检查您的服务器