요르딩딩
[Spring 분석] HTTP multipart 본문
728x90
반응형
HTTP Multipart
: HTTP를 통해 File을 SERVER로 전송하기 위해 사용되는 Content-type입니다
.
간단하게 HTTP(request와 response 둘 다)는 4개로 나눌 수 있습니다.
- Request line
- HTTP Header
- Empty line
- Message body
여기서 Message body에 들어가는 데이터 타입을 HTTP Header에 명시해줄 수 있는데, 명시할 수 있도록 해주는 필드가 바로 Content-type입니다.
그리고 바로 이 Content-type 필드에 MIME 타입을 기술해줄 수 있는데 여러 MIME 타입 중 하나가 바로 Multipart입니다.
Content-Type: multipart/form-data; boundary=AaB03x
--AaB03x
Content-Disposition: form-data; name="submit-name"
Sally
--AaB03x
Content-Disposition: form-data; name="files"; filename="essayfile.txt" Content-Type: text/plain
...contents of _essayfile.txt_...
--AaB03x--
[사용상황]
HTML에서 파일을 업로드할때 Content-Type: multipart/form-data 형식으로 주면 백엔드에서 File을 받을 수 있습니다.
백엔드에서는 MultipartHTTPRequest 객체를 통해 해당을 꺼내서 사용할 수 있습니다.(getFile() 메소드 사용 )
728x90
반응형
'[Web] > [Spring]' 카테고리의 다른 글
[Spring 분석] DB연동 구조(그림) (0) | 2021.04.12 |
---|---|
[Spring 분석] jar, war 란 (0) | 2021.04.07 |
[Spring 분석] Tomcat 설정관리 (0) | 2021.04.06 |
[Spring 분석] 파일다운로드 (0) | 2021.04.03 |
[Spring 분석] 호스트(IP),프로세스, 포트, 소켓이란 (0) | 2021.04.03 |
Comments