- 첨부파일 유무확인


* JSP 에서 첨부파일 하려면 <form> 태그에서 type = "multipart/form-data" 주어야한다.

* 그럼... Controller 단에서 HttpServletRequest 받아서 체크하면 되겟다.


* EX)

  1. Controller 단에서 HttpServletReqeust request 로 받았다고 가정하고...

  2. 

      String type = request.getHeader("Content-Type");

      ( (type != null) && (type.startWith("multipart/form-data")) ) 이렇게 해서 boolean 값을 return 받아서 체크 하면

      되지 않을까 싶어서 남긴다...

+ Recent posts