Skip to content

Change update file configuration.

Latest
Compare
Choose a tag to compare
@waylau waylau released this 19 Sep 15:36
· 3 commits to master since this release
280387a

With Spring Boot 2.x , the servlet update file configuration has changed.

Change the configuration

spring.http.multipart.max-file-size=1024KB
spring.http.multipart.max-request-size=1024KB

to

spring.servlet.multipart.max-file-size=1024KB
spring.servlet.multipart.max-request-size=1024KB

See #4.