我正在尝试使用spring boot上传文件,但每次重新启动服务器时,我上传的文件都会消失。
spring boot创建名为upload-dir
的文件,每次重新启动服务器时,此文件都被删除并重新创建,因此我不知道上传和存储文件的位置。
我的文件上传控制器代码:
package com.theligue.webservice;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.Resource;
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.method.annotation.MvcUriComponentsBuilder;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import com.theligue.webservice.storage.StorageFileNotFoundException;
import com.theligue.webservice.storage.StorageService;
import java.io.IOException;
import java.util.stream.Collectors;
@Controller
public class FileUploadController {
private final StorageService storageService;
@Autowired
public FileUploadController(StorageService storageService) {
this.storageService = storageService;
}
@GetMapping("/uploadPOC")
public String listUploadedFiles(Model model) throws IOException {
model.addAttribute("files", storageService
.loadAll()
.map(path ->
MvcUriComponentsBuilder
.fromMethodName(FileUploadController.class, "serveFile", path.getFileName().toString())
.build().toString())
.collect(Collectors.toList()));
return "uploadForm";
}
@GetMapping("/files/{filename:.+}")
@ResponseBody
public ResponseEntity<Resource> serveFile(@PathVariable String filename) {
Resource file = storageService.loadAsResource(filename);
return ResponseEntity
.ok()
.header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\""+file.getFilename()+"\"")
.body(file);
}
@PostMapping("/")
public String handleFileUpload(@RequestParam("file") MultipartFile file,
RedirectAttributes redirectAttributes) {
storageService.store(file);
redirectAttributes.addFlashAttribute("message",
"You successfully uploaded " + file.getOriginalFilename() + "!");
return "redirect:/uploadPOC/";
}
@ExceptionHandler(StorageFileNotFoundException.class)
public ResponseEntity handleStorageFileNotFound(StorageFileNotFoundException exc) {
return ResponseEntity.notFound().build();
}
}
答案 0 :(得分:3)
我认为你正在使用spring boot示例?因此,您只需要在Application.init()中删除storageService.deleteAll()调用,该调用将在启动时删除所有上载的文件。
答案 1 :(得分:1)
假设您是MYSQL数据库上传文件,我希望您尝试以下方法。 在您的WEB-INF文件夹下,您应该有spring-servlet文件。在该文件中,您将定义hibernate属性。它应该类似于以下代码。
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">create</prop>
</props>
</property>
当您将属性保留为“创建”时,每次启动服务器时,都必须重新创建表并一次又一次地上传文件。为了将新文件保存到数据库中,同时保持旧文件的完整性,请执行以下操作。
替换
<prop key="hibernate.hbm2ddl.auto">create</prop>
与
<prop key="hibernate.hbm2ddl.auto">update</prop>
就是这样。现在,不是重新创建表,而是会更新数据库中的文件。