JavaでApacheCommonsHTTPClientライブラリを使用してサーブレットへのPOSTを実行する方法を尋ねる投稿など、いくつかの投稿があるようです。ただし、注釈付きのSpringコントローラーメソッドで同じことを行うのに問題があるようです。私はいくつかのことを試しましたが、サーバーからHTTP 401BadRequest応答を受け取りました。これを行う例があれば大歓迎です。
編集:私が使用しようとしているコード:
//Server Side (Java)
@RequestMapping(value = "/create", method = RequestMethod.POST)
public void createDocument(@RequestParam("userId") String userId,
@RequestParam("file") MultipartFile file, HttpServletResponse response) {
// Do some stuff
}
//Client Side (Groovy)
void processJob(InputStream stream, String remoteAddress) {
HttpClient httpclient = new DefaultHttpClient()
httpclient.getParams().setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1)
HttpPost httppost = new HttpPost("http://someurl/rest/create")
MultipartEntity mpEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE)
InputStreamBody uploadFilePart = new InputStreamBody(stream, 'application/octet-stream', 'test.file')
mpEntity.addPart('file', uploadFilePart)
mpEntity.addPart('userId', new StringBody('testUser'))
httppost.setEntity(mpEntity)
HttpResponse response = httpclient.execute(httppost);
println(response.statusLine)
}
サーバーからの応答でまだ400の不正な要求を取得しています。