Spring MVC 处理文件上传

简介: 使用 HttpServletRequest 对象处理上传文件

使用 HttpServletRequest 对象处理上传文件



@RequestMapping(value = "/fileUpload", method = RequestMethod.POST)
    @ResponseBody
    public String fileUpload(HttpServletRequest request) {
        log.info("----fileUpload start----");
        log.info("className = {}, contextPath = {}, servletPath = {}", request.getClass().getName(), request.getContextPath(), request.getServletPath());
        final Map<String, String[]> parameterMap = request.getParameterMap();
        for (Map.Entry<String, String[]> entry : parameterMap.entrySet()) {
            log.info("key = {}, value = {}", entry.getKey(), Arrays.toString(entry.getValue()));
        }
        final MultipartHttpServletRequest multipartHttpServletRequest = (MultipartHttpServletRequest) request;
        for (Map.Entry<String, List<MultipartFile>> entry : multipartHttpServletRequest.getMultiFileMap().entrySet()) {
            final List<MultipartFile> value = entry.getValue();
            for (MultipartFile file : value) {
                log.info("fileName = {}, fileOriginalFilename = {}, size = {} KB", file.getName(), file.getOriginalFilename(), file.getSize() / 1024);
            }
        }
        log.info("----fileUpload end----");
        return "upload successful";
    }


对应 cURL 描述

curl --location --request POST 'localhost:4000/fileUpload' \
--form 'aaa="bbb"' \
--form 'def=@"/C:/Users/hp/Desktop/11111.sql"'


对应的 RestTemplate 描述

public String uploadTest() {
        log.info("--- uploadTest start ---");
        HttpHeaders headers = new HttpHeaders();
        //  请勿轻易改变此提交方式,大部分的情况下,提交方式都是表单提交
        headers.setContentType(MediaType.MULTIPART_FORM_DATA);
        //  封装参数,千万不要替换为 Map 与 HashMap,否则参数无法传递
        MultiValueMap<String, Object> multiValueMap = new LinkedMultiValueMap<>();
        multiValueMap.add("aaa", "bbb");
        multiValueMap.add("def", new FileSystemResource("C:/Users/hp/Desktop/11111.sql"));
        HttpEntity<MultiValueMap<String, Object>> requestEntity = new HttpEntity<>(multiValueMap, headers);
        // 执行HTTP请求
        ResponseEntity<String> response = null;
        try {
            response = this.restTemplate.exchange("http://localhost:4000/fileUpload", HttpMethod.POST, requestEntity, String.class);
        } catch (HttpStatusCodeException e) {
            final HttpStatus httpStatus = e.getStatusCode();
            log.error("HttpStatusCodeException httpStatus = {}", httpStatus, e);
        } catch (RestClientException e) {
            log.error("RestClientException", e);
        }
        if (response != null) {
            //  输出结果
            final HttpStatus statusCode = response.getStatusCode();
            final int value = statusCode.value();
            log.info("rest template statusCode = {}, result = {}", value, response.getBody());
        }
        log.info("--- uploadTest end ---");
        return "OK";
    }


日志打印结果

2021-05-06 18:44:42.849  controller.EmailController   : ----fileUpload start----
2021-05-06 18:44:42.849  controller.EmailController   : className = org.springframework.web.multipart.support.StandardMultipartHttpServletRequest, contextPath = , servletPath = /fileUpload
2021-05-06 18:44:42.849  controller.EmailController   : key = aaa, value = [bbb]
2021-05-06 18:44:42.850  controller.EmailController   : fileName = def, fileOriginalFilename = 11111.sql, size = 2 KB
2021-05-06 18:44:42.850  controller.EmailController   : ----fileUpload end----


直接使用 MultipartFile  对象获取上传的文件



@RequestMapping("/multipartFile")
    public String upload(@RequestParam("aaa") String abc, @RequestParam("def") MultipartFile file) throws IllegalStateException {
        log.info("abc = {}", abc);
        // 判断文件是否为空,空则返回失败页面
        if (file.isEmpty()) {
            return "failed";
        }
        log.info("className = {}, fileName = {}, fileOriginalFilename = {}, size = {} KB", file.getClass().getName(), file.getName(), file.getOriginalFilename(), file.getSize() / 1024);
        return "success";
    }


日志输出

2021-05-06 20:06:36.578  INFO 3488 --- [nio-4000-exec-1] c.lagou.edu.controller.EmailController   : abc = bbb
2021-05-06 20:06:36.581  INFO 3488 --- [nio-4000-exec-1] c.lagou.edu.controller.EmailController   : className = org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile, fileName = def, fileOriginalFilename = 11111.sql, size = 2 KB


由此说明 MultipartFile 的实际类型为


org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile


多文件上传,将 MultipartFile 改为类型数组即可


In our example we are presenting demo for single and multiple file upload. So we have created two different methods for uploading the file. In single upload, the method should have the parameter as below with other parameters.

@RequestParam("file") MultipartFile file

And for multiple file upload , the parameter should be as below

@RequestParam("file") MultipartFile[]  file


代码片段


package com.lagou.edu.controller;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.FileSystemResource;
import org.springframework.http.*;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.client.HttpStatusCodeException;
import org.springframework.web.client.RestClientException;
import org.springframework.web.client.RestTemplate;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import javax.servlet.http.HttpServletRequest;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
/**
 * 测试 spring mvc fileUpload
 *
 * @author lik
 * @date 2021/5/6
 */
@Slf4j
@RestController
public class EmailController {
    @Autowired
    RestTemplate restTemplate;
    @RequestMapping(value = "/uploadTest")
    public String uploadTest() {
        log.info("--- uploadTest start ---");
        HttpHeaders headers = new HttpHeaders();
        //  请勿轻易改变此提交方式,大部分的情况下,提交方式都是表单提交
        headers.setContentType(MediaType.MULTIPART_FORM_DATA);
        //  封装参数,千万不要替换为 Map 与 HashMap,否则参数无法传递
        MultiValueMap<String, Object> multiValueMap = new LinkedMultiValueMap<>();
        multiValueMap.add("aaa", "bbb");
        multiValueMap.add("def", new FileSystemResource("C:/Users/hp/Desktop/11111.sql"));
        HttpEntity<MultiValueMap<String, Object>> requestEntity = new HttpEntity<>(multiValueMap, headers);
        // 执行HTTP请求
        ResponseEntity<String> response = null;
        try {
            response = this.restTemplate.exchange("http://localhost:4000/fileUpload", HttpMethod.POST, requestEntity, String.class);
        } catch (HttpStatusCodeException e) {
            final HttpStatus httpStatus = e.getStatusCode();
            log.error("HttpStatusCodeException httpStatus = {}", httpStatus, e);
        } catch (RestClientException e) {
            log.error("RestClientException", e);
        }
        if (response != null) {
            //  输出结果
            final HttpStatus statusCode = response.getStatusCode();
            final int value = statusCode.value();
            log.info("rest template statusCode = {}, result = {}", value, response.getBody());
        }
        log.info("--- uploadTest end ---");
        return "OK";
    }
    @RequestMapping(value = "/fileUpload", method = RequestMethod.POST)
    @ResponseBody
    public String fileUpload(HttpServletRequest request) {
        log.info("----fileUpload start----");
        log.info("className = {}, contextPath = {}, servletPath = {}", request.getClass().getName(), request.getContextPath(), request.getServletPath());
        final Map<String, String[]> parameterMap = request.getParameterMap();
        for (Map.Entry<String, String[]> entry : parameterMap.entrySet()) {
            log.info("key = {}, value = {}", entry.getKey(), Arrays.toString(entry.getValue()));
        }
        final MultipartHttpServletRequest multipartHttpServletRequest = (MultipartHttpServletRequest) request;
        for (Map.Entry<String, List<MultipartFile>> entry : multipartHttpServletRequest.getMultiFileMap().entrySet()) {
            final List<MultipartFile> value = entry.getValue();
            for (MultipartFile file : value) {
                log.info("className = {}, fileName = {}, fileOriginalFilename = {}, size = {} KB", file.getClass().getName(), file.getName(), file.getOriginalFilename(), file.getSize() / 1024);
            }
        }
        log.info("----fileUpload end----");
        return "upload successful";
    }
    @RequestMapping("/multipartFile")
    public String upload(@RequestParam("aaa") String abc, @RequestParam("def") MultipartFile file) throws IllegalStateException {
        log.info("abc = {}", abc);
        // 判断文件是否为空,空则返回失败页面
        if (file.isEmpty()) {
            return "failed";
        }
        log.info("className = {}, fileName = {}, fileOriginalFilename = {}, size = {} KB", file.getClass().getName(), file.getName(), file.getOriginalFilename(), file.getSize() / 1024);
        return "success";
    }
    @RequestMapping("/multipartFiles")
    public String upload(@RequestParam("def") MultipartFile[] multipartFiles) throws IllegalStateException {
        for (MultipartFile file : multipartFiles) {
            log.info("className = {}, fileName = {}, fileOriginalFilename = {}, size = {} KB", file.getClass().getName(), file.getName(), file.getOriginalFilename(), file.getSize() / 1024);
        }
        return "success";
    }
}


参考



一个包含各Java 教程的网站:Java, Spring, Angular, Hibernate and Android


https://www.concretepage.com/




目录
相关文章
|
1月前
|
JSON 前端开发 Java
SSM:SpringMVC
本文介绍了SpringMVC的依赖配置、请求参数处理、注解开发、JSON处理、拦截器、文件上传下载以及相关注意事项。首先,需要在`pom.xml`中添加必要的依赖,包括Servlet、JSTL、Spring Web MVC等。接着,在`web.xml`中配置DispatcherServlet,并设置Spring MVC的相关配置,如组件扫描、默认Servlet处理器等。然后,通过`@RequestMapping`等注解处理请求参数,使用`@ResponseBody`返回JSON数据。此外,还介绍了如何创建和配置拦截器、文件上传下载的功能,并强调了JSP文件的放置位置,避免404错误。
|
1月前
|
前端开发 Java 应用服务中间件
【Spring】Spring MVC的项目准备和连接建立
【Spring】Spring MVC的项目准备和连接建立
53 2
|
2月前
|
缓存 前端开发 Java
【Java面试题汇总】Spring,SpringBoot,SpringMVC,Mybatis,JavaWeb篇(2023版)
Soring Boot的起步依赖、启动流程、自动装配、常用的注解、Spring MVC的执行流程、对MVC的理解、RestFull风格、为什么service层要写接口、MyBatis的缓存机制、$和#有什么区别、resultType和resultMap区别、cookie和session的区别是什么?session的工作原理
【Java面试题汇总】Spring,SpringBoot,SpringMVC,Mybatis,JavaWeb篇(2023版)
|
1月前
|
XML 前端开发 Java
Spring,SpringBoot和SpringMVC的关系以及区别 —— 超准确,可当面试题!!!也可供零基础学习
本文阐述了Spring、Spring Boot和Spring MVC的关系与区别,指出Spring是一个轻量级、一站式、模块化的应用程序开发框架,Spring MVC是Spring的一个子框架,专注于Web应用和网络接口开发,而Spring Boot则是对Spring的封装,用于简化Spring应用的开发。
109 0
Spring,SpringBoot和SpringMVC的关系以及区别 —— 超准确,可当面试题!!!也可供零基础学习
|
2月前
|
XML 缓存 前端开发
springMVC02,restful风格,请求转发和重定向
文章介绍了RESTful风格的基本概念和特点,并展示了如何使用SpringMVC实现RESTful风格的请求处理。同时,文章还讨论了SpringMVC中的请求转发和重定向的实现方式,并通过具体代码示例进行了说明。
springMVC02,restful风格,请求转发和重定向
|
3月前
|
Java 数据库连接 Spring
后端框架入门超详细 三部曲 Spring 、SpringMVC、Mybatis、SSM框架整合案例 【爆肝整理五万字】
文章是关于Spring、SpringMVC、Mybatis三个后端框架的超详细入门教程,包括基础知识讲解、代码案例及SSM框架整合的实战应用,旨在帮助读者全面理解并掌握这些框架的使用。
后端框架入门超详细 三部曲 Spring 、SpringMVC、Mybatis、SSM框架整合案例 【爆肝整理五万字】
|
3月前
|
XML JSON 数据库
SpringMVC入门到实战------七、RESTful的详细介绍和使用 具体代码案例分析(一)
这篇文章详细介绍了RESTful的概念、实现方式,以及如何在SpringMVC中使用HiddenHttpMethodFilter来处理PUT和DELETE请求,并通过具体代码案例分析了RESTful的使用。
SpringMVC入门到实战------七、RESTful的详细介绍和使用 具体代码案例分析(一)
|
3月前
|
前端开发 应用服务中间件 数据库
SpringMVC入门到实战------八、RESTful案例。SpringMVC+thymeleaf+BootStrap+RestFul实现员工信息的增删改查
这篇文章通过一个具体的项目案例,详细讲解了如何使用SpringMVC、Thymeleaf、Bootstrap以及RESTful风格接口来实现员工信息的增删改查功能。文章提供了项目结构、配置文件、控制器、数据访问对象、实体类和前端页面的完整源码,并展示了实现效果的截图。项目的目的是锻炼使用RESTful风格的接口开发,虽然数据是假数据并未连接数据库,但提供了一个很好的实践机会。文章最后强调了这一章节主要是为了练习RESTful,其他方面暂不考虑。
SpringMVC入门到实战------八、RESTful案例。SpringMVC+thymeleaf+BootStrap+RestFul实现员工信息的增删改查
|
3月前
|
JSON 前端开发 Java
Spring MVC返回JSON数据
综上所述,Spring MVC提供了灵活、强大的方式来支持返回JSON数据,从直接使用 `@ResponseBody`及 `@RestController`注解,到通过配置消息转换器和异常处理器,开发人员可以根据具体需求选择合适的实现方式。
157 4
|
3月前
|
XML 前端开发 Java
Spring MVC接收param参数(直接接收、注解接收、集合接收、实体接收)
Spring MVC提供了灵活多样的参数接收方式,可以满足各种不同场景下的需求。了解并熟练运用这些基本的参数接收技巧,可以使得Web应用的开发更加方便、高效。同时,也是提高代码的可读性和维护性的关键所在。在实际开发过程中,根据具体需求选择最合适的参数接收方式,能够有效提升开发效率和应用性能。
119 3