fileupload.fileuploadbase$sizelimitexceededexception: the request was rejected because its size (13463244) exceeds the configured maximum (2097152)
可以使用配置檔案配置,也可以使用bean在啟動類中配置
1、使用配置檔案方式
spring:
servlet:
multipart:
max-file-size: 50mb
max-request-size: 50mb
enabled: true
2、使用啟動類配置方式
新建bean配置類,注意當前類上需要加註解@configuration:
/**
* 檔案上傳配置
* @return
*/
@bean
public multipartconfigelement multipartconfigelement()
SpringBoot (二) 檔案上傳
新建乙個springboot專案 springboot uploadfile 工程目錄 pom.xml依賴 org.springframework.boot spring boot starter web org.springframework.boot spring boot starter th...
springboot系列16 檔案上傳
檔案上傳用到的場景也比較多,如頭像的修改 相簿應用 附件的管理等等,今天就來學習下在springboot框架下應用檔案上傳技術。org.springframework.boot spring boot starter web org.springframework.boot spring boot ...
springboot 上傳檔案大小限制設定
springboot 預設單檔案和單請求的檔案限制很小,1m和10m,一般需要將限制調大。不同spring boot版本 配置引數是不一樣的 今天就是吃了這樣的虧,之前在網上隨便找了個相關引數配置了下,沒有注意版本,發現壓根沒有生效 最正確的姿勢就是檢視官方文件 比如我這裡版本spring boot...