spring boot 图片上传与显示功能实例详解

  首先描述一下问题,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();

  }

  }

  //上传的方法

  @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:/";

  }

  }

  看完上面的代码可以理解到spring boot 的存取文件思路了,存的时候的路径为

  Paths.get(ROOT, filename).toString()))

  这个路径会在本地的工程根目录上创建,不应用部署里的目录,所以一般的访问http访问不可能 ,所以它提供了ResourceLoader,利于这个类可以加载非应用目录的里文件然后返回

  所以就可以读取文件,所以就要写getFIle方法来显示图片

(0)

相关推荐

  • spring boot与redis 实现session共享步骤详解

    这次带来的是spring boot + redis 实现session共享的教程. 在spring boot的文档中,告诉我们添加@EnableRedisHttpSession来开启spring se ...

  • 教你轻松玩转Picasa图片上传

    长假归来,相信不少朋友都带回了很多漂亮的假期照片。不过,独乐不如群乐,您是否想过要将自己假期中的所见所闻与朋友们一同分享呢?其实,最简单的一个办法,就是将照片上传到网络相册。不过,如何上传效率才是最高 ...

  • 图片上传网络变模糊怎么办?图片上传变模糊解决方法

    图片上传网络变模糊怎么办呢?相信很多朋友都遇到过上传到空间或是朋友圈的图片很是模糊,这是怎么回事呢?怎么样才能让图片变得清晰呢?下文小编就为大家带来图片上传变模糊的解决方法,一起去看下吧。 好多童鞋都 ...

  • 闲鱼app怎么关闭自动压缩图片上传功能?

    很多朋友发现自己拍摄的高清照片上传到闲鱼以后,图片变得很模糊,这是怎么回事?下面我们就来看看详细的教程. 1)点开闲鱼APP,首先点击首页右下角处的[我的],然后上拉界面进入[设置]一栏:(如下图) ...

  • 怎么在手机咸鱼app上设置自动压缩图片上传

    随着社会和经济的发展,手机咸鱼app已经成为我们生活中必不可少的一部分,那么我们怎么在手机咸鱼app上设置自动压缩图片上传呢,接下来就让小编来教你们吧.具体如下:1. 第一步,打开手机上的咸鱼app. ...

  • 怎么启用咸鱼自动压缩图片上传功能

    咸鱼是现在十分常用的一款闲置二手交易软件,有些用户想知道怎么启用自动压缩图片上传功能,接下来小编就给大家介绍一下具体的操作步骤.具体如下:1. 首先第一步打开手机中的[咸鱼]App.2. 第二步进入软 ...

  • 如何将图片上传到iCloud照片

    现在有很多人在使用iPhone手机,有些新用户不知道如何将图片上传到iCloud照片,接下来小编就给大家介绍一下具体的操作步骤.手机端1. 首先第一步先打开[设置]窗口,接着根据下图箭头所指,点击已登 ...

  • 手机微信接收的图片上传电脑后如何打印出来?

    电脑是我们经常使用的智能设备,在使用过程中经常会遇到一些小问题,今天小编跟大家介绍下手机微信接收的图片上传电脑后如何打印出来,快来看看吧 操作方法 01 在电脑上登录微信,在手机上确认登录. 02 找 ...

  • 淘宝天猫手机详情页图片上传及发布教程

    对于很多店铺手机详情页都是使用的软件一键生成,对于一个优秀店铺来说一款好的详情页能带来转换率很大的,分享一下手机详情页的图片上传及发布教程 操作方法 01 首先进入卖家中心-在左侧的宝贝管理里面 [发 ...