본문 바로가기

Web/Spring

FIle Upload

servlet-context.xml

form

<form id="writeform" method="post" enctype="multipart/form-data" action="">
	<input type="file" name="upfile" multiple="multiple">

1. input type="file"

2. file upload를 위해서는 반드시 POST 방식 사용

3. enctype 설정 반드시 필요

 

'Web > Spring' 카테고리의 다른 글

Spring에서 swagger 쓰기 위해  (0) 2021.05.04
Spring에서 JSP 쓰기 위해  (0) 2021.05.04
MyBatis  (0) 2021.05.01
@Qualifier  (0) 2021.04.30
스프링 XML  (0) 2021.04.28