首先描述一下问题,spring boot 使用的是内嵌的tomcat, 所以不清楚文件上传到哪里去了, 而且spring boot 把静态的文件全部在启动的时候都会加载到classpath的目录下的,所以上传的文件不知相对于应用目录在哪,也不知怎么写访问路径合适,对于新手的自己真的一头雾水。
后面想起了官方的例子,没想到一开始被自己找到的官方例子,后面太依赖百度谷歌了,结果发现只有官方的例子能帮上忙,而且帮上大忙,直接上密码的代码
package hello; import static org.springframework.hateoas.mvc.ControllerLinkBuilder.linkTo; import static org.springframework.hateoas.mvc.ControllerLinkBuilder.methodOn; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; import java.util.stream.Collectors; import javax.servlet.http.HttpServletRequest; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.core.io.ResourceLoader; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.PathVariable;import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.servlet.mvc.support.RedirectAttributes; @Controller public class FileUploadController { private static final Logger log = LoggerFactory.getLogger(FileUploadController.class); public static final String ROOT = "upload-dir"; private final ResourceLoader resourceLoader; @Autowired public FileUploadController(ResourceLoader resourceLoader) { this.resourceLoader = resourceLoader; } @RequestMapping(method = RequestMethod.GET, value = "/") public String provideUploadInfo(Model model) throws IOException { model.addAttribute("files", Files.walk(Paths.get(ROOT)) .filter(path -> !path.equals(Paths.get(ROOT))) .map(path -> Paths.get(ROOT).relativize(path)) .map(path -> linkTo(methodOn(FileUploadController.class).getFile(path.toString())).withRel(path.toString())) .collect(Collectors.toList())); return "uploadForm"; } //显示图片的方法关键 匹配路径像 localhost:8080/b7c76eb3-5a67-4d41-ae5c-1642af3f8746.png @RequestMapping(method = RequestMethod.GET, value = "/{filename:.+}") @ResponseBody public ResponseEntity<?> getFile(@PathVariable String filename) { try { return ResponseEntity.ok(resourceLoader.getResource("file:" + Paths.get(ROOT, filename).toString())); } catch (Exception e) { return ResponseEntity.notFound().build(); } } <strong>//上传的方法</strong> @RequestMapping(method = RequestMethod.POST, value = "/") public String handleFileUpload(@RequestParam("file") MultipartFile file, RedirectAttributes redirectAttributes, HttpServletRequest request) { System.out.println(request.getParameter("member")); if (!file.isEmpty()) { try { Files.copy(file.getInputStream(), Paths.get(ROOT, file.getOriginalFilename())); redirectAttributes.addFlashAttribute("message", "You successfully uploaded " + file.getOriginalFilename() + "!"); } catch (IOException|RuntimeException e) { redirectAttributes.addFlashAttribute("message", "Failued to upload " + file.getOriginalFilename() + " => " + e.getMessage()); } } else { redirectAttributes.addFlashAttribute("message", "Failed to upload " + file.getOriginalFilename() + " because it was empty"); } return "redirect:/"; } }
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1142
183.71 KB下载数642
644.84 KB下载数2755
相关文章
发现更多好内容猜你喜欢
AI推送时光机spring boot 图片上传与显示功能实例详解
后端开发2023-05-31
Spring Boot 实现图片上传并回显功能
后端开发2024-04-02
利用Spring Boot怎么样实现一个图片上传功能
后端开发2023-05-31
Ajax实现上传图像功能的示例详解
后端开发2024-04-02
Springboot实现图片上传功能的示例代码
后端开发2024-04-02
Golang实现图片上传功能的示例代码
后端开发2024-04-02
Python Flask实现图片上传与下载的示例详解
后端开发2024-04-02
spring boot实现上传图片并在页面上显示及遇到的问题小结
后端开发2023-05-30
PHP实现多张图片上传功能的示例代码
后端开发2024-04-02
C#实现图片缩略图功能的示例详解
后端开发2022-12-23
VUE如何实现选择上传图片并页面显示功能
后端开发2024-04-02
Android编程显示网络上的图片实例详解
后端开发2022-06-06
Android编程实现图片的上传和下载功能示例
后端开发2022-06-06
Java实现图片裁剪功能的示例详解
后端开发2024-04-02
SpringMVC如何实现多个文件上传及上传后立即显示图片功能
后端开发2023-05-31
spring boot实现图片上传到后台的功能(浏览器可直接访问)
后端开发2024-04-02
asp.net core集成CKEditor实现图片上传功能的示例代码
后端开发2022-06-07
详解nodejs实现本地上传图片并预览功能(express4.0+)
后端开发2022-06-04
nodejs 实现简单的文件上传功能(示例详解)
后端开发2024-04-02
咦!没有更多了?去看看其它编程学习网 内容吧