I\'m using Spring Boot and need to let users upload files for processing. Right now, the file uploads to /home/username/git/myproject which is not great.
How do I make S
in springboot 1.4.1.RELEASE
spring.http.multipart.max-file-size=10MB spring.http.multipart.max-request-size=10MB spring.http.multipart.enabled=true spring.http.multipart.location= ..
will be ok.