博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
企业级 Spring Boot 教程 (十七)上传文件
阅读量:5744 次
发布时间:2019-06-18

本文共 3100 字,大约阅读时间需要 10 分钟。

这篇文章主要介绍,如何在springboot工程作为服务器,去接收通过http 上传的multi-file的文件。

构建工程

为例创建一个springmvc工程你需要spring-boot-starter-thymeleaf和 spring-boot-starter-web的起步依赖。为例能够上传文件在服务器,你需要在web.xml中加入标签做相关的配置,但在sringboot 工程中,它已经为你自动做了,所以不需要你做任何的配置。

org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-starter-thymeleaf

创建文件上传controller

直接贴代码:

@Controllerpublic class FileUploadController {     private final StorageService storageService;     @Autowired    public FileUploadController(StorageService storageService) {        this.storageService = storageService;    }     @GetMapping("/")    public String listUploadedFiles(Model model) throws IOException {         model.addAttribute("files", storageService                .loadAll()                .map(path ->                        MvcUriComponentsBuilder                                .fromMethodName(FileUploadController.class, "serveFile", path.getFileName().toString())                                .build().toString())                .collect(Collectors.toList()));         return "uploadForm";    }     @GetMapping("/files/{filename:.+}")    @ResponseBody    public ResponseEntity
serveFile(@PathVariable String filename) { Resource file = storageService.loadAsResource(filename); return ResponseEntity .ok() .header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\""+file.getFilename()+"\"") .body(file); } @PostMapping("/") public String handleFileUpload(@RequestParam("file") MultipartFile file, RedirectAttributes redirectAttributes) { storageService.store(file); redirectAttributes.addFlashAttribute("message", "You successfully uploaded " + file.getOriginalFilename() + "!"); return "redirect:/"; } @ExceptionHandler(StorageFileNotFoundException.class) public ResponseEntity handleStorageFileNotFound(StorageFileNotFoundException exc) { return ResponseEntity.notFound().build(); } }

这个类通过@Controller注解,表明自己上一个Spring mvc的c。每个方法通过

@GetMapping 或者@PostMapping注解表明自己的 http方法。

GET / 获取已经上传的文件列表

GET /files/{filename} 下载已经存在于服务器的文件
POST / 上传文件给服务器
创建一个简单的 html模板
为了展示上传文件的过程,我们做一个界面:
在src/main/resources/templates/uploadForm.html

    

File to upload:

上传文件大小限制

如果需要限制上传文件的大小也很简单,只需要在springboot 工程的src/main/resources/application.properties 加入以下:

spring.http.multipart.max-file-size=128KBspring.http.multipart.max-request-size=128KB

架构代码如下 :

image

转载地址:http://foazx.baihongyu.com/

你可能感兴趣的文章
Java SSM 客户管理 商户 管理系统 库存管理 销售报表 项目源码
查看>>
排序优化——如何实现一个通用的、高性能的排序函数
查看>>
OC高效率52之多用GCD,少用performSelector系列方法
查看>>
sqoop导入关系型数据库-解密Sqoop
查看>>
Linux-dns基础知识和BIND的简单配置-1
查看>>
kafka Corrupt index found
查看>>
PoE
查看>>
《JAVA与模式》之适配器模式
查看>>
采用spring+structs+hibanate框架开发javaWeb项目
查看>>
数据库和表的管理
查看>>
redis 常用命令
查看>>
LVS+Keepalived高可用负载均衡集群架构
查看>>
烂泥:kvm安装windows系统蓝屏
查看>>
iPhone开发面试题--葵花宝典
查看>>
EdbMails Convert EDB to PST
查看>>
The Euler function(线性筛欧拉函数)
查看>>
POJ 2184
查看>>
存储过程简单实例
查看>>
大话 程序猿 眼里的 接口
查看>>
struts2用了哪几种模式
查看>>