日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

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

欄目分類
最近更新