springboot上传图片

一、上传文件的代码


    @RequestMapping(value = "/imgUpdate", produces = "application/json; charset=utf-8" ,method = RequestMethod.POST)
    @ResponseBody
    public ResponseBean imgUpdate(@RequestParam(value = "file") MultipartFile file) {
        if (file.isEmpty()) {
            return new ResponseBean(Const.CODE_FAIL,null,"文件不能为空");
        }
        // 获取文件名
        String fileName = file.getOriginalFilename();
        logger.info("上传的文件名为:" + fileName);
        // 获取文件的后缀名
        String suffixName = fileName.substring(fileName.lastIndexOf("."));
        logger.info("上传的后缀名为:" + suffixName);
        // 文件上传后的路径
        String filePath = resourceLocation;
        // 解决中文问题,liunx下中文路径,图片显示问题
        // fileName = UUID.randomUUID() + suffixName;
        File dest = new File(filePath + fileName);
        // 检测是否存在目录
        if (!dest.getParentFile().exists()) {
            dest.getParentFile().mkdirs();
        }
        try {
            file.transferTo(dest);
            return new ResponseBean(Const.CODE_SUCCESS,null,"文件成功");
        } catch (IllegalStateException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return new ResponseBean(Const.CODE_FAIL,null,"文件上传失败");

    }

二、配置本地临时目录:
为由于springbooot启动自带容器,因此无法像通常的部署在tomcat等容器的应用一样有解压后的静态目录以供临时文件存储,会生成一个private的私有虚拟临时目录,这个目录我们是无法访问的,file.transferTo(dest);也就无法获取这个虚拟目录中的文件进行传输,因此我们配置做一个配置,用来指定一个本地目录作为springboot的临时目录,如下:


    @Bean
    MultipartConfigElement multipartConfigElement() {
        MultipartConfigFactory factory = new MultipartConfigFactory();
        factory.setLocation(tmpLocation);
        return factory.createMultipartConfig();
    }

其中factory.setLocation(tmpLocation);中的tmpLocation是指定的系统目录绝对路径,也就是要作为临时目录的一个地址。我是在application.yml中配置的,以便改动方便:

custom:
  tmpLocation: /Users/administrator/upload/tmp/

PS:如果上传图片的接口部署在api网关后面,比如:zuul等,需要将临时目录在网关服务中设置。另外,如果使用默认的tmp目录,有可能会被操作系统不定期清除。

你可能感兴趣的:(springboot上传图片)