> I have a GWT web application that I run on multiple Tomcat servers. It > happens to need some configuration, such as database username and > password, initialization data, etc. I would like to put all this info > in a configuration file, but, I where should I put the file so that my > application will find it?
If you're using Maven, Maven Profiles are a also great way to deal with this: http://goo.gl/ujQuf You could use this to filter environment specific settings into your tomcat JNDI setup or filter these settings into properties files on your classpath. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
