I am trying to make a restful controller to upload files. I have seen this and made this controller:
@RestController public class MaterialController {
In application.properties, please add this:
spring.servlet.multipart.max-file-size=128KB spring.servlet.multipart.max-request-size=128KB spring.http.multipart.enabled=false
and in your html form, you need an : enctype="multipart/form-data". For example:
enctype="multipart/form-data"
Hope this help!