Is it possible to use Spring / Spring Boot to support file uploading and serve the uploaded files as static resouces ?
I followed the official tutorial so that my app could handle file uploading, but when I tried to set the storage root directory to the static resources folder, it did not work.
And I do not want to upload the files to another server or AWS S3.
How to use Spring / Spring Boot to support file uploading and serve the uploaded files as static resouces ?
I'm making some assumptions about your environment, but how about this:
Write the files to "somedirectory" then add a @Controller/@RestController that looks for those files and returns them.