I have a simple web application which uses Apache Tomcat 6.0. I am trying to read properties file from the path "resources/mysql.properties". Here "resources" folder is outside the "src" folder. When I am trying to run the project as Java Application it works fine. But It throws FileNotFoundException when I run it on the Server.
This is the Java code with main, which I am running on Console.
package com.jm.test;
import com.jm.util.PropertyUtil;
public class CodeTester {
public static void main(String[] args) {
System.out.println(PropertyUtil.getDBPropertyValue("driver"));
}
}
This is the code of PropertyUtil.Java file.
/**
*
*/
package com.jm.util;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.MissingResourceException;
import java.util.Properties;
import org.apache.log4j.Logger;
/**
* @author Jaydeep Ranipa
*
*/
public class PropertyUtil {
public static final Logger log = Logger.getLogger(PropertyUtil.class);
private static final String resourceDir = "resources";
private PropertyUtil() {
}
private static Properties loadProperties(String fileName) throws IOException, FileNotFoundException {
System.out.println("filename: "+fileName);
InputStream fileStream = new FileInputStream(new File(fileName));
Properties props = new Properties();
props.load(fileStream);
return props;
}
public static String getDBPropertyValue(String key) {
Properties prop = null;
String value = "";
String fileName = "localmysql.properties";
try {
prop = loadProperties(resourceDir + "/" + fileName);
value = prop.getProperty(key);
if (value == null) {
throw new MissingResourceException("Property not found.", "DATABASE", key);
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
System.out.println("properties file not found");
e.printStackTrace();
log.error("Properties file <<<"+resourceDir + "/" + fileName +">>> not found.");
value = "Error occured.";
} catch (IOException e) {
// TODO Auto-generated catch block
System.out.println("properties file reading failed");
log.error("Properties file <<<"+resourceDir + "/" + fileName +">>> reading failed.");
value = "Error occured.";
} catch (MissingResourceException e) {
// TODO: handle exception
System.out.println("property not found");
log.error("Property <<<"+e.getKey()+">>> for <<<"+e.getClassName()+">>> not found.");
value = "Error occured.";
}
return value;
}
public static String getErrorMessage(String errorCode) {
Properties prop = null;
String message = "";
String fileName = "errormessage.properties";
try {
prop = loadProperties(resourceDir + "/" + fileName);
message = prop.getProperty(errorCode);
if (message == null) {
throw new MissingResourceException("Property not found.", "ERROR", errorCode)
}
} catch (FileNotFoundException e)
// TODO Auto-generated catch block
log.error("Properties file <<<"+resourceDir + "/" + fileName +">>> not found.")
message = "Something went wrong.";
} catch (IOException e) {
// TODO Auto-generated catch bloc
log.error("Properties file <<<"+resourceDir + "/" + fileName +">>> reading failed.");
message = "Something went wrong.";
} catch (MissingResourceException e) {
// TODO: handle exception
log.error("Property <<<"+e.getKey()+">>> for <<<"+e.getClassName()+">>> not found.");
message = "Something went wrong.";
}
return message
}
}
The following code gives the error when executing through web server.
Class.forName(PropertyUtil.getDBPropertyValue("driver"));
con = DriverManager.getConnection(PropertyUtil.getDBPropertyValue("url"),
PropertyUtil.getDBPropertyValue("username"),
PropertyUtil.getDBPropertyValue("password"));
return con;