I'd like to deploy the same web application for a number of different customers. Each deployment needs a different value in one of the elements of the web.xml configuration file.
Without building a different .war file for each customer (with the different values set in the web.xml in each .war), is it possible to configure the values for the different customers? For example, can a web.xml file pick up values from a per deployment properties file?
We're using Tomcat as out servlet container.