3

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の不正な要求を取得しています。

4

2 に答える 2

4

無能さを示したときに自分の質問に答えるのは嫌いですが、コードは問題ないことがわかりました。この特定のコントローラーには、そのservlet-context.xmlファイルで定義されたCommonsMultipartResolverがありませんでした(複数のDispatcherServlets ...長い話:()

これを機能させるために追加したものは次のとおりです。

<!-- ========================= Resolver DEFINITIONS ========================= -->
<bean id="multipartResolver"
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

    <!-- one of the properties available; the maximum file size in bytes -->
    <property name="maxUploadSize" value="50000000"/>
</bean>
于 2011-02-04T17:15:02.147 に答える
2

Spring Referenceの例を次に示します。

@Controller
public class FileUpoadController {

    @RequestMapping(value = "/form", method = RequestMethod.POST)
    public String handleFormUpload(@RequestParam("name") String name,
        @RequestParam("file") MultipartFile file) {

        if (!file.isEmpty()) {
            byte[] bytes = file.getBytes();
            // store the bytes somewhere
           return "redirect:uploadSuccess";
       } else {
           return "redirect:uploadFailure";
       }
    }

}
于 2011-02-04T04:38:16.897 に答える