upload : file upload, download
This commit is contained in:
@@ -0,0 +1,84 @@
|
||||
package hello.upload.controller;
|
||||
|
||||
import hello.upload.domain.Item;
|
||||
import hello.upload.domain.ItemRepository;
|
||||
import hello.upload.domain.UploadFile;
|
||||
import hello.upload.file.FileStore;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.core.io.Resource;
|
||||
import org.springframework.core.io.UrlResource;
|
||||
import org.springframework.http.HttpHeaders;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.Model;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
|
||||
import org.springframework.web.util.UriUtils;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.MalformedURLException;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.List;
|
||||
|
||||
@Slf4j
|
||||
@Controller
|
||||
@RequiredArgsConstructor
|
||||
public class ItemController {
|
||||
|
||||
private final ItemRepository itemRepository;
|
||||
private final FileStore fileStore;
|
||||
|
||||
@GetMapping("/items/new")
|
||||
public String newItem(@ModelAttribute ItemForm form) {
|
||||
return "item-form";
|
||||
}
|
||||
|
||||
@PostMapping("/items/new")
|
||||
public String saveItem(@ModelAttribute ItemForm form, RedirectAttributes redirectAttributes) throws IOException {
|
||||
UploadFile attachFile = fileStore.storeFile(form.getAttachFile());
|
||||
List<UploadFile> storeImageFiles = fileStore.storeFiles(form.getImageFiles());
|
||||
|
||||
// 데이터베이스에 저장
|
||||
Item item = new Item();
|
||||
item.setItemName(form.getItemName());
|
||||
item.setAttachFile(attachFile);
|
||||
item.setImageFiles(storeImageFiles);
|
||||
itemRepository.save(item);
|
||||
|
||||
redirectAttributes.addAttribute("itemId", item.getId());
|
||||
|
||||
return "redirect:/items/{itemId}";
|
||||
}
|
||||
|
||||
@GetMapping("/items/{id}")
|
||||
public String items(@PathVariable Long id, Model model) {
|
||||
Item item = itemRepository.findById(id);
|
||||
model.addAttribute("item", item);
|
||||
return "item-view";
|
||||
}
|
||||
|
||||
@ResponseBody
|
||||
@GetMapping("/images/{filename}")
|
||||
public Resource downloadImage(@PathVariable String filename) throws MalformedURLException {
|
||||
return new UrlResource("file:" + fileStore.getFullPath(filename));
|
||||
}
|
||||
|
||||
@GetMapping("/attach/{itemId}")
|
||||
public ResponseEntity<Resource> downloadAttach(@PathVariable Long itemId) throws MalformedURLException {
|
||||
Item item = itemRepository.findById(itemId);
|
||||
String storeFileName = item.getAttachFile().getStoreFileName();
|
||||
String uploadFileName = item.getAttachFile().getUploadFileName();
|
||||
|
||||
UrlResource urlResource = new UrlResource("file:" + fileStore.getFullPath(storeFileName));
|
||||
log.info("uploadFilename={}", uploadFileName);
|
||||
|
||||
String encodedUploadFilename = UriUtils.encode(uploadFileName, StandardCharsets.UTF_8);
|
||||
String contentDisposition = "attachment; filename:\"" + encodedUploadFilename + "\"";
|
||||
|
||||
return ResponseEntity.ok()
|
||||
.header(HttpHeaders.CONTENT_DISPOSITION, contentDisposition)
|
||||
.body(urlResource);
|
||||
}
|
||||
}
|
||||
15
upload/src/main/java/hello/upload/controller/ItemForm.java
Normal file
15
upload/src/main/java/hello/upload/controller/ItemForm.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package hello.upload.controller;
|
||||
|
||||
import lombok.Data;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class ItemForm {
|
||||
|
||||
private Long itemId;
|
||||
private String itemName;
|
||||
private MultipartFile attachFile;
|
||||
private List<MultipartFile> imageFiles;
|
||||
}
|
||||
14
upload/src/main/java/hello/upload/domain/Item.java
Normal file
14
upload/src/main/java/hello/upload/domain/Item.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package hello.upload.domain;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class Item {
|
||||
|
||||
private Long id;
|
||||
private String itemName;
|
||||
private UploadFile attachFile;
|
||||
private List<UploadFile> imageFiles;
|
||||
}
|
||||
23
upload/src/main/java/hello/upload/domain/ItemRepository.java
Normal file
23
upload/src/main/java/hello/upload/domain/ItemRepository.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package hello.upload.domain;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
@Repository
|
||||
public class ItemRepository {
|
||||
|
||||
private final Map<Long, Item> store = new HashMap<>();
|
||||
private long sequence = 0L;
|
||||
|
||||
public Item save(Item item) {
|
||||
item.setId(++sequence);
|
||||
store.put(item.getId(), item);
|
||||
return item;
|
||||
}
|
||||
|
||||
public Item findById(Long id) {
|
||||
return store.get(id);
|
||||
}
|
||||
}
|
||||
12
upload/src/main/java/hello/upload/domain/UploadFile.java
Normal file
12
upload/src/main/java/hello/upload/domain/UploadFile.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package hello.upload.domain;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
public class UploadFile {
|
||||
|
||||
private String uploadFileName;
|
||||
private String storeFileName;
|
||||
}
|
||||
56
upload/src/main/java/hello/upload/file/FileStore.java
Normal file
56
upload/src/main/java/hello/upload/file/FileStore.java
Normal file
@@ -0,0 +1,56 @@
|
||||
package hello.upload.file;
|
||||
|
||||
import hello.upload.domain.UploadFile;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.stereotype.Component;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
@Component
|
||||
public class FileStore {
|
||||
|
||||
@Value("${file.dir}")
|
||||
private String fileDir;
|
||||
|
||||
public String getFullPath(String fileName) {
|
||||
return fileDir + fileName;
|
||||
}
|
||||
|
||||
public List<UploadFile> storeFiles(List<MultipartFile> multipartFiles) throws IOException {
|
||||
List<UploadFile> storeFileResult = new ArrayList<>();
|
||||
for (MultipartFile multipartFile : multipartFiles) {
|
||||
if (!multipartFile.isEmpty()) {
|
||||
storeFileResult.add(storeFile(multipartFile));
|
||||
}
|
||||
}
|
||||
return storeFileResult;
|
||||
}
|
||||
|
||||
public UploadFile storeFile(MultipartFile multipartFile) throws IOException {
|
||||
if (multipartFile.isEmpty()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
String originalFilename = multipartFile.getOriginalFilename();
|
||||
String storeFilename = createStoreFilename(originalFilename);
|
||||
multipartFile.transferTo(new File(getFullPath(storeFilename)));
|
||||
|
||||
return new UploadFile(originalFilename, storeFilename);
|
||||
}
|
||||
|
||||
private String createStoreFilename(String originalFilename) {
|
||||
String ext = extractExt(originalFilename);
|
||||
String uuid = UUID.randomUUID().toString();
|
||||
return uuid + "." + ext;
|
||||
}
|
||||
|
||||
private String extractExt(String originalFilename) {
|
||||
int pos = originalFilename.lastIndexOf(".");
|
||||
return originalFilename.substring(pos + 1);
|
||||
}
|
||||
}
|
||||
21
upload/src/main/resources/templates/item-form.html
Normal file
21
upload/src/main/resources/templates/item-form.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="py-5 text-center">
|
||||
<h2>상품 등록</h2>
|
||||
</div>
|
||||
<form th:action method="post" enctype="multipart/form-data">
|
||||
<ul>
|
||||
<li>상품명 <input type="text" name="itemName"></li>
|
||||
<li>첨부파일<input type="file" name="attachFile" ></li>
|
||||
<li>이미지 파일들<input type="file" multiple="multiple" name="imageFiles" ></li>
|
||||
</ul>
|
||||
<input type="submit"/>
|
||||
</form>
|
||||
</div> <!-- /container -->
|
||||
</body>
|
||||
</html>
|
||||
17
upload/src/main/resources/templates/item-view.html
Normal file
17
upload/src/main/resources/templates/item-view.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="py-5 text-center">
|
||||
<h2>상품 조회</h2>
|
||||
</div>
|
||||
상품명: <span th:text="${item.itemName}">상품명</span><br/>
|
||||
첨부파일: <a th:if="${item.attachFile}" th:href="|/attach/${item.id}|"
|
||||
th:text="${item.getAttachFile().getUploadFileName()}" /><br/>
|
||||
<img th:each="imageFile : ${item.imageFiles}" th:src="|/images/${imageFile.getStoreFileName()}|" width="300" height="300"/>
|
||||
</div> <!-- /container -->
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user