SSM-SpringMVC-32:SpringMVC中灌顶传授文件上传

简介:    ------------吾亦无他,唯手熟尔,谦卑若愚,好学若饥-------------     我将用自认为最简单的语言,描述Springmvc的文件上传,来将老夫毕生功力灌顶传授给你 首先文件上传,又简至深 前提有吗?jar包,form表单里的属性(method="pos...

 

 

 
------------吾亦无他,唯手熟尔,谦卑若愚,好学若饥-------------

 

 

我将用自认为最简单的语言,描述Springmvc的文件上传,来将老夫毕生功力灌顶传授给你

首先文件上传,又简至深

前提有吗?jar包,form表单里的属性(method="post" enctype="multipart/form-data")

 

jar包的节点我给出来:

 

        <!--文件上传的jar包-->
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.3.1</version>
        </dependency>

        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.4</version>
        </dependency>

 

 

 

下面我开始我第一个案例,最简单的文件上传:

  1.jsp页面:fileupload.jsp

 

<%--
  Created by IntelliJ IDEA.
  User: Dawn
  Date: 2018/4/2
  Time: 14:19
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<html>
<head>
    <title>文件上传</title>
</head>
<body>
<h1>文件上传</h1>
    <form action="${pageContext.request.contextPath}/fileuploadfirst" method="post" enctype="multipart/form-data">
        文件1   <input type="file" name="upload"/>
        <input type="submit"/>
    </form>
</body>
</html>

 

  success.jsp

 

<%--
  Created by IntelliJ IDEA.
  User: Dawn
  Date: 2018/4/2
  Time: 14:19
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<html>
<head>
    <title>成功</title>
</head>
<body>
    <h1>SUCCESS</h1>
</body>
</html>

 

  2.在webapp下你jsp页面的那个包下创建一个文件夹,我的叫upload,里面随便扔个东西,编译后,如果即使这样target目录下还没有upload这个文件夹的话,就手动创建

  3.创建处理器和处理方法

 

package cn.dawn.day24fileupload;

import com.sun.org.glassfish.gmbal.ParameterNames;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpSession;
import java.io.File;
import java.io.IOException;

/**
 * Created by Dawn on 2018/4/2.
 */
@Controller
public class FileupLoad {


    /*最初始版本*/
    @RequestMapping("/fileuploadfirst")
    public String fileuploadfirst(MultipartFile upload, HttpSession session){
        /*获取上传文件的简单名称例如    1.txt*/
        String childrlPath = upload.getOriginalFilename();
        /*获得一个真实路径*/
        String parentPath = session.getServletContext().getRealPath("/day24/upload");
        /*获取一个完整的文件对象*/
        File file=new File(parentPath,childrlPath);
        /*传输创建到本地*/
        try {
            upload.transferTo(file);
            /*上传成功*/
            return "success";
        } catch (IOException e) {
            e.printStackTrace();
        }

        /*上传失败*/
        return "fileupload";
    }
}

 

  4.自己的xml配置文件:这儿其实我想删减点的,文件名中文的处理和文件大小限制放在后面讲也行,不过放在这儿,你们应该也能理解

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
         http://www.springframework.org/schema/context
         http://www.springframework.org/schema/context/spring-context.xsd">

    <!--包扫描器-->
    <context:component-scan base-package="cn.dawn.day24fileupload"></context:component-scan>
    <!--视图解析器-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/day24/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
    
    <!--多部分文件解析器-->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <!--文件名的编码-->
        <property name="defaultEncoding" value="UTF-8"></property>
        <!--限制文件大小--><!--这个单位是byte,我这儿限制的是20mb最大容量-->
        <property name="maxUploadSize" value="20971520"></property>
    </bean>

    <!--绑定注解驱动-->
    <mvc:annotation-driven></mvc:annotation-driven>

</beans>

 

  5.web.xml中修改中央处理器的上下文配置参数为上面那个xml

  6.启动tomcat,访问fileupload.jsp页面

 

 

 

第二个案例:多文件上传

  1.jsp页面fileuploadmore.jsp:

 

<%--
  Created by IntelliJ IDEA.
  User: Dawn
  Date: 2018/4/2
  Time: 14:19
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<html>
<head>
    <title>文件上传</title>
</head>
<body>
<h1>文件上传</h1>
    <form action="${pageContext.request.contextPath}/fileuploadsecond" method="post" enctype="multipart/form-data">
        文件1   <input type="file" name="upload"/>
        文件2   <input type="file" name="upload"/>
        文件3   <input type="file" name="upload"/>
        <input type="submit"/>
    </form>
</body>
</html>

 

  success.jsp

 

<%--
  Created by IntelliJ IDEA.
  User: Dawn
  Date: 2018/4/2
  Time: 14:19
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<html>
<head>
    <title>成功</title>
</head>
<body>
    <h1>SUCCESS</h1>
</body>
</html>

 

  2.处理器处理方法

 

package cn.dawn.day24fileupload;

import com.sun.org.glassfish.gmbal.ParameterNames;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpSession;
import java.io.File;
import java.io.IOException;

/**
 * Created by Dawn on 2018/4/2.
 */
@Controller
public class FileupLoad {

    /*多文件版本*/
    @RequestMapping("/fileuploadsecond")
    public String fileuploadsecond(@RequestParam MultipartFile[] upload, HttpSession session){
        for (MultipartFile item :upload) {
            if(item.getSize()>0) {
                /*获取上传文件的简单名称例如    1.txt*/
                String childrlPath = item.getOriginalFilename();
                /*获得一个真实路径*/
                String parentPath = session.getServletContext().getRealPath("/day24/upload");
                /*获取一个完整的文件对象*/
                File file = new File(parentPath, childrlPath);
                /*传输创建到本地*/
                try {
                    item.transferTo(file);
                /*上传成功*/

                } catch (IOException e) {
                    e.printStackTrace();
                    return "fileuploadmore";
                }
            }
        }


        /*上传失败*/
        return "success";
    }



    /*最初始版本*/
    @RequestMapping("/fileuploadfirst")
    public String fileuploadfirst(MultipartFile upload, HttpSession session){
        /*获取上传文件的简单名称例如    1.txt*/
        String childrlPath = upload.getOriginalFilename();
        /*获得一个真实路径*/
        String parentPath = session.getServletContext().getRealPath("/day24/upload");
        /*获取一个完整的文件对象*/
        File file=new File(parentPath,childrlPath);
        /*传输创建到本地*/
        try {
            upload.transferTo(file);
            /*上传成功*/
            return "success";
        } catch (IOException e) {
            e.printStackTrace();
        }

        /*上传失败*/
        return "fileupload";
    }
}

 

  3.自己的xml配置文件

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
         http://www.springframework.org/schema/context
         http://www.springframework.org/schema/context/spring-context.xsd">

    <!--包扫描器-->
    <context:component-scan base-package="cn.dawn.day24fileupload"></context:component-scan>
    <!--视图解析器-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/day24/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
    
    <!--多部分文件解析器-->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <!--文件名的编码-->
        <property name="defaultEncoding" value="UTF-8"></property>
        <!--限制文件大小--><!--这个单位是byte,我这儿限制的是20mb最大容量-->
        <property name="maxUploadSize" value="20971520"></property>
    </bean>

    <!--绑定注解驱动-->
    <mvc:annotation-driven></mvc:annotation-driven>

</beans>

 

  4.修改web.xml的中央调度器的上下文配置位置为上面那个xml

  5.在webapp下你jsp页面的那个包下创建一个文件夹,我的叫upload,里面随便扔个东西,编译后,如果即使这样target目录下还没有upload这个文件夹的话,就手动创建

  6.启动tomcat,访问fileuploadmore.jsp页面

 

目录
相关文章
|
9天前
|
设计模式 前端开发 Java
步步深入SpringMvc DispatcherServlet源码掌握springmvc全流程原理
通过对 `DispatcherServlet`源码的深入剖析,我们了解了SpringMVC请求处理的全流程。`DispatcherServlet`作为前端控制器,负责请求的接收和分发,处理器映射和适配负责将请求分派到具体的处理器方法,视图解析器负责生成和渲染视图。理解这些核心组件及其交互原理,有助于开发者更好地使用和扩展SpringMVC框架。
24 4
|
27天前
|
前端开发 Java 开发者
Spring MVC中的请求映射:@RequestMapping注解深度解析
在Spring MVC框架中,`@RequestMapping`注解是实现请求映射的关键,它将HTTP请求映射到相应的处理器方法上。本文将深入探讨`@RequestMapping`注解的工作原理、使用方法以及最佳实践,为开发者提供一份详尽的技术干货。
95 2
|
2月前
|
JSON 前端开发 Java
SSM:SpringMVC
本文介绍了SpringMVC的依赖配置、请求参数处理、注解开发、JSON处理、拦截器、文件上传下载以及相关注意事项。首先,需要在`pom.xml`中添加必要的依赖,包括Servlet、JSTL、Spring Web MVC等。接着,在`web.xml`中配置DispatcherServlet,并设置Spring MVC的相关配置,如组件扫描、默认Servlet处理器等。然后,通过`@RequestMapping`等注解处理请求参数,使用`@ResponseBody`返回JSON数据。此外,还介绍了如何创建和配置拦截器、文件上传下载的功能,并强调了JSP文件的放置位置,避免404错误。
|
2月前
|
前端开发 Java 应用服务中间件
【Spring】Spring MVC的项目准备和连接建立
【Spring】Spring MVC的项目准备和连接建立
65 2
|
3月前
|
缓存 前端开发 Java
【Java面试题汇总】Spring,SpringBoot,SpringMVC,Mybatis,JavaWeb篇(2023版)
Soring Boot的起步依赖、启动流程、自动装配、常用的注解、Spring MVC的执行流程、对MVC的理解、RestFull风格、为什么service层要写接口、MyBatis的缓存机制、$和#有什么区别、resultType和resultMap区别、cookie和session的区别是什么?session的工作原理
|
2月前
|
XML 前端开发 Java
Spring,SpringBoot和SpringMVC的关系以及区别 —— 超准确,可当面试题!!!也可供零基础学习
本文阐述了Spring、Spring Boot和Spring MVC的关系与区别,指出Spring是一个轻量级、一站式、模块化的应用程序开发框架,Spring MVC是Spring的一个子框架,专注于Web应用和网络接口开发,而Spring Boot则是对Spring的封装,用于简化Spring应用的开发。
191 0
Spring,SpringBoot和SpringMVC的关系以及区别 —— 超准确,可当面试题!!!也可供零基础学习
|
3月前
|
XML 缓存 前端开发
springMVC02,restful风格,请求转发和重定向
文章介绍了RESTful风格的基本概念和特点,并展示了如何使用SpringMVC实现RESTful风格的请求处理。同时,文章还讨论了SpringMVC中的请求转发和重定向的实现方式,并通过具体代码示例进行了说明。
springMVC02,restful风格,请求转发和重定向
|
4月前
|
Java 数据库连接 Spring
后端框架入门超详细 三部曲 Spring 、SpringMVC、Mybatis、SSM框架整合案例 【爆肝整理五万字】
文章是关于Spring、SpringMVC、Mybatis三个后端框架的超详细入门教程,包括基础知识讲解、代码案例及SSM框架整合的实战应用,旨在帮助读者全面理解并掌握这些框架的使用。
后端框架入门超详细 三部曲 Spring 、SpringMVC、Mybatis、SSM框架整合案例 【爆肝整理五万字】
|
4月前
|
XML JSON 数据库
SpringMVC入门到实战------七、RESTful的详细介绍和使用 具体代码案例分析(一)
这篇文章详细介绍了RESTful的概念、实现方式,以及如何在SpringMVC中使用HiddenHttpMethodFilter来处理PUT和DELETE请求,并通过具体代码案例分析了RESTful的使用。
SpringMVC入门到实战------七、RESTful的详细介绍和使用 具体代码案例分析(一)
|
4月前
|
前端开发 应用服务中间件 数据库
SpringMVC入门到实战------八、RESTful案例。SpringMVC+thymeleaf+BootStrap+RestFul实现员工信息的增删改查
这篇文章通过一个具体的项目案例,详细讲解了如何使用SpringMVC、Thymeleaf、Bootstrap以及RESTful风格接口来实现员工信息的增删改查功能。文章提供了项目结构、配置文件、控制器、数据访问对象、实体类和前端页面的完整源码,并展示了实现效果的截图。项目的目的是锻炼使用RESTful风格的接口开发,虽然数据是假数据并未连接数据库,但提供了一个很好的实践机会。文章最后强调了这一章节主要是为了练习RESTful,其他方面暂不考虑。
SpringMVC入门到实战------八、RESTful案例。SpringMVC+thymeleaf+BootStrap+RestFul实现员工信息的增删改查