Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reading properties from tomcat

What is the best practice for reading config file(s) for your application. Which folders in tomcat server are "on the classpath".

I tried placing my config file in the TOMCAT_HOME\conf but still I can't read it from my servlet.

Tried using this (there is app.properties file in conf):

this.getClass().getClassLoader().getResourceAsStream("/app.properties");

I don't have much properties maybe 10-15 I figured this won't be problem. I remember when I was using jboss this wasn't issue as this much.

In my app I also specify DB connection spring in the context.xml can I specify my properties in there as well somehow? Or how this works with tomcat?

I'd like to keep my properties seperate from my war/unpacked war.

Update

Reason for asking this is because I don't know where my app will be deployed (at what location)

like image 471
Gandalf StormCrow Avatar asked Sep 05 '12 11:09

Gandalf StormCrow


2 Answers

There are many different ways but it depends on your needs:

To load a property file from $TOMCAT_HOME/conf directory you will need to access it using a java.io.File object since the class loader (as in this.getClass().getClassLoader().getResourceAsStream(...) is just able to load files (and classes) from your class path (under WEB-INF/classes, WEB-INF/lib or $TOMCAT_HOME/lib).

The easiest example to load a file from the Tomcat's config directory would be:

File configDir = new File(System.getProperty("catalina.base"), "conf");
File configFile = new File(configDir, "myconfig.properties");
InputStream stream = new FileInputStream(configFile);
Properties props = new Properties();
props.load(stream);

Notice that this approach will make your code dependent of Tomcat (the loading mechanism depends on the fact of a Tomcat's system property being available). This is something that I wouldn't recommend at all so if you move your property file to a folder inside your classpath then you should be able to load it the way you tried and your application could be deployed in any container.

And, you could configure your properties as JNDI resources but it would be too much hassle to access them.

like image 82
Alonso Dominguez Avatar answered Sep 18 '22 05:09

Alonso Dominguez


Rather than referring to location of a particular configuration file, I'd use JNDI-bound configuration, to keep the applications dependent on the configuration data and Java EE standards only. I can see two options:

  1. If you only have a moderate number of configuration entries in your property file, then consider making them Environment Entries and access them via JNDI in your applications.

  2. Alternatively, say in case you want to keep your properties in a separate property file, you might also create a bean to represent the properties, a factory (initializing the bean using a property file) and hook it up to JNDI as a Resource Definition.
    With that, one might even be able to regularly re-read the property file without a need to restart the apps, switch between various sources of configuration or similar other requirements.

Each of web applications using this configuration will have to include a Resource Reference in it's web.xml to refer to the configuration bean (or a reference to each env. entry if option 1 is used).

like image 35
david a. Avatar answered Sep 21 '22 05:09

david a.