Externalize your configuration from war
For settings that are going to change across different environments like database connection, you should externalize them from your war file. So, you can have your war be environment agnositic. Then, you can promote via simply copying your war across different environments. In Spring, there are several ways to achieve this.
What [...]

Continue reading " Configuration Management via Spring "