spring实现单(多)文件上传,列表显示与下载

本文演示了一个Spring项目,实现了单文件和多文件上传,上传的文件在前端页面展示,并提供下载功能。通过配置文件、前端页面和后台控制器实现文件上传、列表显示及下载操作。
摘要由CSDN通过智能技术生成

如题所言,这个project demo可以做到文件上传到指定位置,然后在页面上显示这些图片文件,每个图片有一个下载按钮,点击后就可以将文件下载下来。首先来看下粗犷的页面显示。

导航页面有三个连接,分别为单文件上传,多文件上处与文件显示,点击文件显示的时候便会出现上图中的图片列表,点击图片本身就会像一般的网页那样,在另一个页面放大显示出来,点击下载便会触发下载功能,将文件下载。基本的功能介绍就结束了,接下来来看看具体的实现。

一、项目建立

首先使用idea,当然eclipse也是OK的,建立一个maven项目,初学者可以在网上一搜便知。然后在pom.xml依赖文件中假如如下的依赖:

<dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
      <version>4.3.12.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-webmvc</artifactId>
      <version>4.3.12.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>4.3.12.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context-support</artifactId>
      <version>4.3.12.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>org.freemarker</groupId>
      <artifactId>freemarker</artifactId>
      <version>2.3.21</version>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.0.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>jstl</artifactId>
      <version>1.2</version>
    </dependency>
    <dependency>
      <groupId>commons-fileupload</groupId>
      <artifactId>commons-fileupload</artifactId>
      <version>1.3.2</version>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.5</version>
    </dependency>
    <dependency>
      <groupId>taglibs</groupId>
      <artifactId>standard</artifactId>
      <
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值