@RequestMapping(value = "/file/upload/add/BBS_ID/{bbsId}", method = RequestMethod.POST)
//@ResponseBody 컴포넌트가 application/json 타입을 지원하지않으므로 text/html 타입으로 json을 리턴한다.
public void fileUploadAdd(@PathVariable String bbsId, HttpServletRequest request, HttpServletResponse response) throws IOException {
MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest)request;
MultipartFile mpFile = multipartRequest.getFile("attachFile");
// 파일 사이즈 체크 (모두 허용 - web 단에서 체크함)
// 파일 확장자 체크 (모두 허용 - web 단에서 체크함)
// 파일의 기초정보
String strUniqueFileName = UUID.randomUUID() + "_" + mpFile.getOriginalFilename();