[Spring] PostgreSQL에 파일 저장하고 불러오기
bytea 컬럼 생성
파일(바이너리)을 저장하기 위한 컬럼을 생성합니다.
1 2 3 4 5 6 7
| CREATE TABLE public.attach_file_info ( file_size integer NOT NULL, file_type character varying(4), thumbnail text, file bytea, )
|
마지막 file 컬럼을 bytea 타입으로 생서합니다.
파일 전송
이부분은 자바로 전송하는 코드를 사용하였습니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| private void fileUploadWithThumbnail(String attach_file_seq, String file_path, String user_id, String thumbnail) { File uploadFile = new File(file_path); MultipartEntityBuilder builder = MultipartEntityBuilder.create() .setCharset(Charset.forName("UTF-8")) .setMode(HttpMultipartMode.BROWSER_COMPATIBLE); builder.addPart("file", new FileBody(uploadFile)); builder.addTextBody("attach_file_seq", attach_file_seq, ContentType.create("Multipart/related", "UTF-8")); builder.addTextBody("user_id", user_id, ContentType.create("Multipart/related", "UTF-8")); builder.addTextBody("thumbnail", thumbnail, ContentType.create("Multipart/related", "UTF-8"));
try { InputStream inputStream = null; HttpClient httpClient = new DefaultHttpClient(); HttpPost post = new HttpPost(server_domain + "/file/fileUploadDisk.json"); HttpEntity multipart = builder.build(); post.setEntity(multipart); HttpResponse httpResponse = httpClient.execute(post); HttpEntity httpEntity = httpResponse.getEntity(); } catch (Exception e) { e.printStackTrace(); } }
|
MultipartEntityBuilder
를 사용하여 파일을 전송합니다.
file
에 전송할 파일을 담습니다.
- 추가적으로 필요한 정보들을 넣습니다.
- Post 로 해당 내용을 전송합니다.
서버에서 파일 저장
1 2 3 4 5 6 7 8 9 10
| @RequestMapping("/fileUploadDisk.json") public void fileUploadDisk(RMap rmap, ModelMap model, @RequestParam("file") MultipartFile file) throws IOException { if (file.isEmpty()) return; rmap.put("file", file.getBytes()); commonFileService.insertAttachFileInfo(rmap, model); }
|
getBytes
로 파일을 byte array 로 받습니다. 그리고 mybatis 로 전달합니다.
insert Query
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <! <INSERT id="insertAttachFileInfo"> INSERT INTO ATTACH_FILE_INFO ( thumbnail, file ) VALUES ( #{thumbnail}, #{file} ) </INSERT>
|
byte array 를 쿼리를 통해 그대로 저장합니다.
이미지 불러오기
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| @RequestMapping("/attachImage.do") public void attachImage(RMap rmap, ModelMap model, HttpServletRequest request, HttpServletResponse response) throws IOException { UMap umap = commonService.selectAttachFile(rmap, model);
byte[] data = (byte[]) umap.get("file"); String file_type = (String)umap.get("file_type"); if (data == null || !file_type.equals("0001")){ String thumbnail = (String) umap.get("thumbnail"); data = Base64.decodeBase64(thumbnail.split("base64,")[1]); }
response.setContentType("image/jpeg"); response.getOutputStream().write(data); }
|
다운로드 하기
1 2 3 4 5 6 7 8 9 10 11 12 13
| @RequestMapping("/fileDownload.do") public void fileDownload(RMap rmap, ModelMap model, HttpServletRequest request, HttpServletResponse response) throws IOException { UMap umap = commonService.selectAttachFile(rmap, model);
String filename = (String) umap.get("original_file_name"); String fileNm = new String(filename.getBytes("UTF-8"), "ISO-8859-1");
response.setContentType("application/octet-stream"); response.setHeader("Content-Disposition", "attachment;filename=" + fileNm);
byte[] data = (byte[]) umap.get("file"); response.getOutputStream().write(data); }
|