Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
application.yml 配置
错误信息
Nginx也是配置上传50m大小的文件,但是超过1M的图片,会上传失败,为什么?帮帮我?谢谢
请试一试:
在 Spring Boot 2.0 之前:
spring.http.multipart.max-file-size=50MB spring.http.multipart.max-request-size=50MB
在 Spring Boot 2.0 之后:
spring.servlet.multipart.max-file-size=50MB spring.servlet.multipart.max-request-size=50MB