SpringBoot's @MultipartConfig maxFileSize not taking effect

后端 未结 7 1522
野性不改
野性不改 2021-02-02 07:52

I have a controller with a MultipartConfig annotation (a snippet of which is show below):

@RestController
@RequestMapping(\"packages\")
@MultipartCo         


        
7条回答
  •  情话喂你
    2021-02-02 08:38

    For Spring Boot v2+ add the following to the application.properties:

    spring.servlet.multipart.max-file-size=10MB
    spring.servlet.multipart.max-request-size=40MB
    

提交回复
热议问题