I'm currently trying to grasp the concept in this File upload tutorial in Spring Boot especially the StorageProperties.
I'm wondering: where will the uploaded files go? I searched the resources folder and static but no file are being uploaded there.
I'm currently trying to grasp the concept in this File upload tutorial in Spring Boot especially the StorageProperties.
I'm wondering: where will the uploaded files go? I searched the resources folder and static but no file are being uploaded there.
The StorageService is just an interface. You have to provide its implementation.
Checkout this Github Repo, Sample App
I found an answer to my question and the answer is you cannot upload a file that will be effectively inside a Jar.
https://stackoverflow.com/a/36769132/4748775
Im sorry for such question. hopefully this may help other beginners looking for a way to upload inside the project structure.