学无先后,达者为师

网站首页 编程语言 正文

Failed to bind properties under spring.servlet.multipart.max-file-size to org.springframework.util

作者:zjh_746140129 更新时间: 2022-04-17 编程语言

前言:在使用Spring Boot2.0+版本时,配置了文件上传的yml,启动时报错如图一所示

完成目标:
1、无法启动项目报错

2、maven配置截图

3、解决方案

一、错误信息:

Description:

Failed to bind properties under ‘spring.servlet.multipart.max-file-size’ to org.springframework.util.unit.DataSize:

Property: spring.servlet.multipart.max-file-size
Value: 30mb
Origin: class path resource [application.yml]:22:22
Reason: failed to convert java.lang.String to org.springframework.util.unit.DataSize

Action:

Update your application’s configuration

图一:
在这里插入图片描述

二、maven配置截图

在这里插入图片描述

三、解决方案

spring:
servlet:
multipart:
max-file-size: 30mb
max-request-size: 30mb

改为

spring:
servlet:
multipart:
max-file-size: 30MB
max-request-size: 30MB

在这里插入图片描述

好了,这样就解决了~

原文链接:https://blog.csdn.net/zjh_746140129/article/details/109748564

栏目分类
最近更新