1. ホーム
  2. Web プログラミング
  3. AJAX関連

Ajaxファイルアップロード機能(Spring MVC)

2022-01-15 17:59:12

この例では、参考のため、ファイルアップロードのAjax実装の具体的なコードを以下のように共有します。

フロントエンドのフォームとJQueryのjsp/htmlコード

JQuryを使用する

<script src="static/js/jquery-3.4.1.js"></script>

フロントエンドフォーム

<form id="form-avatar" enctype="multipart/form-data">
 <p>Please select the file to upload: </p>
 
 <p><input type="file" name="file" /></p>
 <p><input id="btn-avatar" type="button" value="upload" /></p>
</form>

AJAXリクエストサーバー

<script>
 function uploadfile(){
  $.ajax({
   url : "/url/upload",
   data: new FormData($("#form-avatar")[0]),
   type : "POST",
   // Tell jQuery not to process the data sent, for serialization of data parameters.
   processData : false,
   // Tell jQuery not to set the Content-Type request header
   contentType : false,

   success : function(json) {
    alert("Execution successful");
   },
   error : function(json) {
    alert("Failed");

   }
  });
 }
 $("#btn-avatar").on("click",uploadfile);
</script>

Conroller.java

@PostMapping("/upload")
 public void fileUpload2(@RequestParam("file") CommonsMultipartFile file, HttpServletRequest request) throws IOException {
  System.out.println("gone");
  // upload path save settings
  String path = request.getServletContext().getRealPath("/upload");
  File realPath = new File(path);
  if (!realPath.exists()) {
   realPath.mkdir();
  }
  //Upload file address
  System.out.println("Upload file save address: " + realPath);

  // write the file directly via CommonsMultipartFile's method (note this time)
  file.transferTo(new File(realPath + "/" + file.getOriginalFilename()));

 }

結果

以上が今回の記事の内容ですが、皆様の学習の一助となり、スクリプトハウスをより一層応援していただければ幸いです。