간단한 이해 Disposition이란 기질, 성향, 배치, 배열 이란 뜻이다. HTTP Response Header에 들어가는 Content-Disposition은 HTTP Response Body에 오는 컨텐츠의 기질/성향을 알려주는 속성이다. default 값은 inline으로 web에 전달되는 data라고 생각하면 된다. 특수한 경우는 Content-Disposition에 attachment를 주는 경우로, 이때 filename과 함께 주게 되면 Body에 오는 값을 다운로드 받으라는 뜻이 된다. Content-Disposition: attachment; filename="hello.jpg""는 서버측에서 header를 설정할 때 붙이지 않아도 되는 듯 하다 multipart 만약 Body에 담길 ..