How do you maintain java webapps in different staging environments? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T11:47:21Z http://stackoverflow.com/feeds/question/93944 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments 5 How do you maintain java webapps in different staging environments? stian 2008-09-18T16:05:09Z 2009-09-08T03:55:18Z <p>You might have a set of properties that is used on the developer machine, which varies from developer to developer, another set for a staging environment, and yet another for the production environment. </p> <p>In a Spring application you may also have beans that you want to load in a local environment but not in a production environment, and vice versa. </p> <p>How do you handle this? Do you use separate files, ant/maven resource filtering or other approaches? </p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/93988#93988 0 Answer by Aaron for How do you maintain java webapps in different staging environments? Aaron 2008-09-18T16:08:52Z 2008-09-18T16:08:52Z <p>I use Ant's copy with a filter file. In the directory with the config file with variables I have a directory with a file for each environment. The build script know the env and uses the correct variable file.</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94002#94002 2 Answer by delfuego for How do you maintain java webapps in different staging environments? delfuego 2008-09-18T16:10:29Z 2008-09-18T16:10:29Z <p>I just use different Spring XML configuration files for each machine, and make sure that all the bits of configuration data that vary between machines is referenced by beans that load from those Spring configuration files.</p> <p>For example, I have a webapp that connects to a Java RMI interface of another app. My app gets the address of this other app's RMI interface via a bean that's configured in the Spring XML config file. Both my app and the other app have dev, test, and production instances, so I have three configuration files for my app -- one that corresponds to the configuration appropriate for the production instance, one for the test instance, and one for the dev instance.</p> <p>Then, the only thing that I need to keep straight is which configuration file gets deployed to which machine. So far, I haven't had any problems with the strategy of creating Ant tasks that handle copying the correct configuration file into place before generating my WAR file; thus, in the above example, I have three Ant tasks, one that generates the production WAR, one that generates the dev WAR, and one that generates the test WAR. All three tasks handle copying the right config file into the right place, and then call the same next step, which is compiling the app and creating the WAR.</p> <p>Hope this makes some sense...</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94054#94054 1 Answer by Tomer Gabel for How do you maintain java webapps in different staging environments? Tomer Gabel 2008-09-18T16:15:34Z 2008-09-18T16:15:34Z <p>Separate configuration files, stored in the source control repository and updated by hand. Typically configuration does not change radically between one version and the next so synchronization (even by hand) isn't really a major issue.</p> <p>For highly scalable systems in production environments I would <i>seriously</i> recommend a scheme in which configuration files are kept in templates, and as part of the build script these templates are used to render "final" configuration files (all environments should use the same process).</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94067#94067 0 Answer by JeeBee for How do you maintain java webapps in different staging environments? JeeBee 2008-09-18T16:16:51Z 2008-09-18T16:16:51Z <p>I have different configuration folders holding the configurations for the target deployment, and I use ANT to select the one to use during the file copy stage.</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94081#94081 2 Answer by Caleb Phillips for How do you maintain java webapps in different staging environments? Caleb Phillips 2008-09-18T16:18:19Z 2008-09-18T16:18:19Z <p>We use properties files specific to the environments and have the ant build select the correct set when building the jars/wars. </p> <p>Environment specific things can also be handled through the directory service (JNDI), depending on your app server. We use tomcat and our DataSource is defined in Tomcat's read only JNDI implementation. Spring makes the lookup very easy.</p> <p>We also use the ant strategy for building different sites (differeing content, security roles, etc) from the same source project as well.</p> <p>There is one thing that causes us a little trouble with this build strategy, and that is that often files and directories don't exist until the build is run, so it can make it difficult to write true integration tests (using the same spring set up as when deployed) that are runnable from within the IDE. You also miss out on some of the IDE's ability to check for the existence of files, etc.</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94110#94110 5 Answer by willCode4Beer for How do you maintain java webapps in different staging environments? willCode4Beer 2008-09-18T16:22:10Z 2008-09-19T00:56:27Z <p>I just put the various properties in JNDI. This way each of the servers can be configured and I can have ONE war file. If the list of properties is large, then I'll host the properties (or XML) files on another server. I'll use JNDI to specify the URL of the file to use.</p> <p>If you are creating different app files (war/ear) for each environment, then you aren't deploying the same war/ear that you are testing.</p> <p>In one of my apps, we use several REST services. I just put the root url in JNDI. Then in each environment, the server can be configured to communicate with the proper REST service for that environment.</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94132#94132 0 Answer by zmf for How do you maintain java webapps in different staging environments? zmf 2008-09-18T16:24:33Z 2008-09-18T16:24:33Z <p>We use different ant targets for different environments. The way we do it may be a bit inelegant but it works. We will just tell certain ant targets to filter out different resource files (which is how you could exclude certain beans from being loaded), load different database properties, and load different seed data into the database. We don't really have an ant 'expert' running around but we're able to run our builds with different configurations from a single command.</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94211#94211 0 Answer by Kief for How do you maintain java webapps in different staging environments? Kief 2008-09-18T16:34:07Z 2008-09-18T16:34:07Z <p>One solution I have seen used is to configure the staging environment so that it is identical to the production environment. This means each environment has a VLAN with the same IP range, and machine roles on the same IP addresses (e.g. the db cluster IP is always 192.168.1.101 in each environment). The firewalls mapped external facing addresses to the web servers, so by swapping host files on your PC the same URL could be used - <a href="http://www.myapp.com/webapp/file.jsp" rel="nofollow">http://www.myapp.com/webapp/file.jsp</a> would go to either staging or production, depending on which hosts file you had swapped in.</p> <p>I'm not sure this is an ideal solution, it's quite fiddly to maintain, but it's an interesting one to note.</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94280#94280 0 Answer by Spencer K for How do you maintain java webapps in different staging environments? Spencer K 2008-09-18T16:40:27Z 2008-09-18T16:40:27Z <p>Caleb P and JeeBee probably have your fastest solution. Plus you don't have to setup different services or point to files on different machines. You can specify your environment either by using a ${user.name} variable or by specifying the profile in a -D argument for Ant or Maven.</p> <p>Additionally in this setup, you can have a generic properties file, and overriding properties files for the specific environments. Both Ant and Maven support these capabilities.</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94631#94631 1 Answer by enricopulatzo for How do you maintain java webapps in different staging environments? enricopulatzo 2008-09-18T17:22:12Z 2008-09-18T17:22:12Z <p>I use Maven to filter out the resources under src/main/resources in my project. I use this in combination with property files to pull in customized attributes in my Spring-based projects.</p> <p>For default builds, I have a properties file in my home directory that Maven then uses as overrides (so things like my local Tomcat install are found correctly). Test server and production server are my other profiles. A simple <code>-Pproduction</code> is all it then takes to build an application for my production server.</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/143242#143242 0 Answer by belugabob for How do you maintain java webapps in different staging environments? belugabob 2008-09-27T08:35:39Z 2008-09-27T08:35:39Z <p>Don't forget to investigate PropertyPlaceholderConfigurer - this is especially useful in environments where JNDI is not available</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/342267#342267 1 Answer by Elwyn Malethan for How do you maintain java webapps in different staging environments? Elwyn Malethan 2008-12-04T22:05:23Z 2008-12-04T22:05:23Z <p>I recently also used Maven for alternative configurations for live or staging environments. <a href="http://www.malethan.com/article/production_cfg_maven_profiles.html" rel="nofollow">Production configuration using Maven Profiles</a>. Hope it helps.</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/1391891#1391891 1 Answer by ron for How do you maintain java webapps in different staging environments? ron 2009-09-08T03:55:18Z 2009-09-08T03:55:18Z <p>Use different properties files and use ant replace filters which will do the replacement based on environment for which the build is done. See <a href="http://www.devrecipes.com/2009/08/14/environment-specific-configuration-for-java-applications/" rel="nofollow">http://www.devrecipes.com/2009/08/14/environment-specific-configuration-for-java-applications/</a></p>