SpringBoot项目上传文件报错
Posted suebuliy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot项目上传文件报错相关的知识,希望对你有一定的参考价值。
SpringBoot项目上传图片报错 FileSizeLimitExceededException: The field upload exceeds its maximum permitted size of 1048576 bytes.
处理办法:
1.application.yml文件添加
spring.http.multipart.maxFileSize : 3Mb
spring.http.multipart.maxRequestSize : 100Mb
2.Application.java文件添加
@Bean public MultipartConfigElement multipartConfigElement() { MultipartConfigFactory factory = new MultipartConfigFactory(); //允许上传的文件最大值 factory.setMaxFileSize("3MB"); //KB,MB /// 设置总上传数据总大小 factory.setMaxRequestSize("100MB"); return factory.createMultipartConfig(); }
3.Controller文件内添加异常处理
@ExceptionHandler(MultipartException.class) @ResponseBody public String handleAll(){ String errorMsg = "文件过大,不能超过3MB"; return errorMsg; }
注:Controller class文件需添加注解@ControllerAdvice
以上是关于SpringBoot项目上传文件报错的主要内容,如果未能解决你的问题,请参考以下文章
关于springboot上传文件报错:The temporary upload location ***is not valid
项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段