springboot 文件上传限制(yml配置)


一、文件上传大小配置

-------springboot 2.0以后----------

spirng:  
 servlet:
multipart:
max-file-size: 100MB
max-request-size: 100MB

-------springboot 2.0以前----------
spring:
 http:
  multipart:
   max-file-size: 100MB
  max-request-size: 100MB

二、上下文配置

-------springboot 2.0以后----------

server:
port: 9005
servlet:
context-path: /risk-warn
-------springboot 2.0以前----------
server:
port: 9005
context-path: /risk-warn


 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM