Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to get relative path of current directory in tomcat from linux environment using java

I would like to use to read properties file from out side of the my web application. I was deployed a war file in tomcat in windows environment and I am able to read properties file from outside of my web application using following code.

//(Method 1.)
String filePath = 
new java.io.File( ".").getCanonicalPath()+"/webapps/strsproperties/strs.properties";
// or  
//(Method 2.)
String filePath = new File(System.getProperty("catalina.base"))+ "/webapps/strsproperties/strs.properties";

InputStream inputStream = null;
inputStream = new FileInputStream(filePath);
properties.load(inputStream);
String application = properties.getProperty("applications");

In above both case's I am able to read filePath in windows.

Problem is I am not able to read filePath in Linux using 1st method ( relative path) process.

Is there any way to read file using relative path in tomcat from Linux env ?.

like image 850
asiam9 Avatar asked Oct 11 '12 15:10

asiam9


People also ask

How to get current working directory path in Java?

In Java, we can use System. getProperty("user. dir") to get the current working directory, the directory from where your program was launched.

How do you create an absolute path in Java?

The getAbsolutePath() method is a part of File class. This function returns the absolute pathname of the given file object. If the pathname of the file object is absolute then it simply returns the path of the current file object. For Example: if we create a file object using the path as “program.

How do I change the deployment path in Tomcat?

1- Custom Deploy Directory Follow the steps below to change the default deploy directory of Tomcat in Eclipse. Select “use custom location” radio button in the “Server Locations” section and set your custom deploy path.


2 Answers

Your problem is that you don't know what the "current" directory is. If you start Tomcat on Linux as a service, the current directory could be anything. So new File(".") will get you a random place in the file system.

Using the system property catalina.base is much better because Tomcat's start script catalina.sh will set this property. So this will work as long as you don't try to run your app on a different server.

Good code would look like this:

File catalinaBase = new File( System.getProperty( "catalina.base" ) ).getAbsoluteFile();
File propertyFile = new File( catalinaBase, "webapps/strsproperties/strs.properties" );

InputStream inputStream = new FileInputStream( propertyFile );

As you can see, the code doesn't mix strings and files. A file is a file and a string is just text. Avoid using text for code.

Next, I'm using getAbsoluteFile() to make sure I get a useful path in exceptions.

Also make sure your code doesn't swallow exceptions. If you could have seen the error message in your code, you would have seen instantly that the code tried to look in the wrong place.

Lastly, this approach is brittle. Your app breaks if the path changes, when a different web server is used and for many other cases.

Consider extending the webapp strsproperties to accept HTTP requests. That way, you could configure your app to connect to strsproperties via an URL. This would work for any web server, you could even put the properties on a different host.

like image 174
Aaron Digulla Avatar answered Sep 22 '22 11:09

Aaron Digulla


If your code runs inside a servlet, it may be simpler to use getServletContext().getRealPath("/strs.properties") to retrieve the absolute file path.

like image 45
David Levesque Avatar answered Sep 22 '22 11:09

David Levesque