I wrote a small Web-Application using Grails. The resulting war-file is deployed on a Tomcat application server.
The app has an upload functionality for attachments. I chose to save the uploaded files to disk (rather than storing blobs in the DB).
At first i chose a filepath inside the webapp-dir to store the files, but then i realized that this dir will be overwritten with every deployment of a new war-file.
Is there a best practice for "where to store uploaded files in your local filesystem"?
Thanks for your help.