今天把Spring boot版本升级到了2.0.0.M4,发现原来的文件上传大小限制设置不起作用了,原来的application.properties设置如下:


spring.http.multipart.max-file-size=30Mb
spring.http.multipart.max-request-size=30Mb
需要改成如下:

spring.servlet.multipart.max-file-size=30Mb
spring.servlet.multipart.max-request-size=30Mb
修改后发现正常了

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-11
  • 2021-06-18
  • 2021-09-12
  • 2021-09-09
  • 2022-12-23
相关资源
相似解决方案