I am trying to make a restful controller to upload files. I have seen this and made this controller:
@RestController public class MaterialController {
I was also facing the same issue with Postman for multipart. I fixed it by doing the following steps:
Postman
multipart
Content-Type
Headers
Body
form-data
file type
It worked for me.