java|tomcat、springmvc、IDEA实现上传文件与项目路径分离

【java|tomcat、springmvc、IDEA实现上传文件与项目路径分离】

      • 一,前言
      • 二、配置Tomcat
      • 三、代码实现
      • 四、IDEA配置

一,前言
我们在开发web项目时,大多数情况下要处理文件上传的业务,如果将文件直接存在在项目路径下的话,会造成很多问题,比如说,导致项目文件过大、部署更新的版本需要重新拷贝文件、文件不能再项目之间共享等,那么我们怎么将文件放在项目之外的位置呢?我们往下看。
二、配置Tomcat
如果我们将项目文件部署在tomcat中,我们可以通过配置tomcat的虚拟路径来达到上传文件与项目路径相分离的目的。我们以上传图片文件为例。我们打开conf文件夹下面的server.xml。在标签下面添加。完整代码如下所示:

三、代码实现
controller层代码如下
@Value("#{fileUpLoader.imgPath}") String path; @RequestMapping(value = "https://www.it610.com/multifiles") public void receivefiles(HttpServletRequest request, HttpServletResponse response, @ModelAttribute UploadFile uploadFile, BindingResult bindingResult,Model model){System.out.println("收到请求"); MultipartFile multipartFile=uploadFile.getMultipartFile(); String filename=multipartFile.getOriginalFilename(); try{ System.out.println(request.getServletContext().getRealPath("/image")); // path="G:tomcatupload" File file=new File(path,filename); if(!file.exists()){} multipartFile.transferTo(file); }catch (IOException e){ e.printStackTrace(); }}

配置文件:
java|tomcat、springmvc、IDEA实现上传文件与项目路径分离
文章图片

java|tomcat、springmvc、IDEA实现上传文件与项目路径分离
文章图片

spring-mvc配置:

效果如图:
java|tomcat、springmvc、IDEA实现上传文件与项目路径分离
文章图片

java|tomcat、springmvc、IDEA实现上传文件与项目路径分离
文章图片

java|tomcat、springmvc、IDEA实现上传文件与项目路径分离
文章图片

四、IDEA配置
以上的方法是直接修改tomcat的配置文件,如果我们在IDEA中配置,又不想影响到tomcat的自身配置,我们可以配置一下服务器:
java|tomcat、springmvc、IDEA实现上传文件与项目路径分离
文章图片

这样在IDEA中启动项目就可以了。

    推荐阅读