Springboot 파일 업로드 기능 간단 한 테스트

static 폴 더 에 html 페이지 만 들 기
내용:

<html>
<head></head>
<body>
<form action="/fileuploadContorller" method="post" enctype="multipart/form-data">
  <input type="file" name="file"/>
  <input type="submit" value="  ">
</form>
</body>
</html>
컨트롤 러 생 성

package com.mc_74120.springbootfileupload.controller;

import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.io.IOException;
@RestController
public class FileUpLoadController {
  @PostMapping("/fileuploadContorller")
  public String fileUpLoadController(MultipartFile file) throws IOException {
//MultipartFile        html             
    System.out.println(file.getOriginalFilename());
    file.transferTo(new File("d:/"+file.getOriginalFilename()));
    return "ok";
  }
}
파일 선택

보내다
이 그림 찾기

응용 프로그램 프로필 에서 파일 의 크기 와 request 요청 의 크기 를 설정 할 수 있 습 니 다
\#단일 파일 크기 설정
spring.servlet.multipart.max-file-size=5MB
\#요청 총 용량 크기 설정
spring.servlet.multipart.max-request-size=10MB
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기