Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

System.getProperty("catalina.base") There can be scenario where client may use any other server

Tags:

java

I am reading a properties file from the Tomcat\conf\somename.properties directory using

String demo = System.getProperty("catalina.base") +
                  File.separator + "conf" + File.separator + "somename.properties";

This is working perfectly fine with Tomcat. But, there can be scenario where client may use any other server like Glassfish or Websphere, in that case I won't be able to get System.getProperty("catalina.base").

How should I solve it properly? I'm able to do that using ResourceBundle but for that I have to keep my properties file in my build, which I don't want. I just want to read my properties file from outside my build.

like image 343
vivekj011 Avatar asked May 24 '11 15:05

vivekj011


3 Answers

There are basically two ways.

  1. Just add its path to the runtime classpath so that you can get it from the classpath the usual way. In case of Tomcat, you can add external folders to the runtime classpath by specifying it in the shared.loader property of /conf/catalina.properties. E.g.

    shared.loader = ${catalina.home}/conf

    Or better, don't be server-specific

    shared.loader = /path/to/folder

    Other servers also supports adding external folders to the classpath, consult their documentation.

    This way you'll be able to get an InputStream of it from the classpath as follows:

    InputStream input = Thread.currentThread().getContextClassLoader().getResourceAsStream("/config.properties");
    Properties properties = new Properties();
    properties.load(input);
    // ...
    

  2. Add another server-independent system property yourself, you can set as a VM argument.

    -Dconfig.location=/path/to/folder

    In case of Tomcat, you can set it as JAVA_OPTS environment variable, or edit the catalina.bat startup file or edit the Windows Service settings (when it's installed as Windows Service), etc. Other servers supports similar constructs as well.

    This way you can obtain it as follows

    File file = new File(System.getProperty("config.location"), "config.properties");
    InputStream input = new FileInputStream(file);
    Properties properties = new Properties();
    properties.load(input);
    // ...
    

Either way you choose, when distributing your application, you should document it properly so that the serveradmin can configure it accordingly.


Unrelated to the problem, the ResourceBundle is not the right way to read configuration properties files. It's intented for localized content for internationalization.

like image 195
BalusC Avatar answered Nov 13 '22 03:11

BalusC


First use the ServletContext.getServerInfo() to determine the container. Then based on the container, use container specific ways of getting the information. For e.g. if the method returns "tomcat*" then you can use catalina.base thing, if it returns glassfish, then use some glassfish specific ways, and so on.

like image 37
Suraj Chandran Avatar answered Nov 13 '22 04:11

Suraj Chandran


Simply put, don't rely on catalina.base, that is your first problem :)

Or, more precisely, the java servlet api gives you access to resources inside your web application, so your app is truly portable (not only between servers, but also you can put it anywhere on the file system, zipped as a war or exploded)

Say you put your file at <webapp-root>/WEB-INF/somename.properties, then this is what you do in your servlet, listener, or other web-aware classes:

getServletContext().getResourceAsStream("/WEB-INF/somename.properties");

See similar question here.

Another alternative is to use regular java api to search for files in your classpath, e.g. this.getClass().getResource("/somename.properties"). In the case of a web application, this will find such a file located under /WEB-INF/class/ or any jar under /WEB-INF/lib/.

Finally, if you can't put the file inside your web application, you can put it anywhere on the hard drive and use some config param (e.g. a system property, or a context parameter in web.xml) to refer to it.

like image 32
Yoni Avatar answered Nov 13 '22 04:11

Yoni