jquery フォームに基づいて画像をアップロードするためのコンポーネントと、サーバー上の新しい画像の URL を含む xml オブジェクトを生成する spring mvc コントローラーを開発しています。クライアント側の私のjqueryコードは次のとおりです。
$('#uploadForm').ajaxForm({
beforeSubmit : function(a, f, o) {
$('#uploadOutput').html('Uploading...');
},
success : function(response) {
var $out = $('#uploadOutput');
var url = $(response, 'url').text();
$out.html('<img src="'+url+'4" alt="'+url+'"/>');
},
dataType : "xml"});
私のフォームは次のとおりです。
<form id="uploadForm" action="http://localhost:8080/gossipdressrest/rest/imageupload/1" method="POST" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
<input type="file" name="file" />
<input type="submit" value="Submit" />
私のSpring MVCコントローラーは次のとおりです。
@RequestMapping(value = "/rest/imageupload/{personId}", method = RequestMethod.POST)
public @ResponseBody
ImageUrl save(@PathVariable("personId") Long personId,
@RequestParam("file") MultipartFile file) {
try {
ImagePk pk = imageManager.storeTmpImage(personId, file.getBytes());
ImageUrl imageUrl = new ImageUrl();
imageUrl.setUrl(imageUrlResolver.getUrl(pk));
return imageUrl;
} catch (Exception e) {
logger.error(e.getMessage(), e);
throw new RuntimeException(e);
}
}
imageUrl は、String 型の単一の属性「url」を持つ POJO です。アップロードされた画像の URL を含みます。上記のコードは、firefox と chrome では正しく動作しますが、IE8 では、サーバーに対して 2 つの要求が行われます。
最初のものは正しいようで、firefox と chrome によって生成されたものと同じです。しかし、別の GET リクエストが生成され、エラー 405 が発生します。
リクエスト 1: POST / HTTP/1.1 gossipdressrest/rest/imageupload/1
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: application / xaml + xml
Transfer-Encoding: chunked
Date: Thu, April 28, 2011 19:56:17 GMT
9e
<? xml version = "1.0" encoding = "UTF-8" standalone = "yes"?> <ImageUrl> <url> http://localhost:8080/gossipdressrest/image/1/TMP/-7884109442646822710/ </ url > </ ImageUrl>
0
リクエスト 2: GET /gossipdressrest/rest/imageupload/1 HTTP/1.1
HTTP/1.1 405 M�todo No Permitido
Server: Apache-Coyote/1.1
Allow: POST
Content-Type: text/html;charset=utf-8
Content-Length: 1097
Date: Thu, 28 Apr 2011 19:56:17 GMT
<html><head><title>Apache Tomcat/6.0.29 - Informe de Error</title>...
何か案が ;-)