I'm working on a website running in Tomcat that stores a lot of member data, and I'm not sure how to best package it.
I want to be able to deploy a war easily without needing to remove anything from it first.
My first thought was to break out the member data into its own directory outside of the war, but my problem is that some of that content needs to be linked in the website (images, etc).
There has to be a better solution than deploying a war, then copying back the data. Does anyone have any suggestions?