Inside my Java class say Props.java File . I have this static block as shown
static
{
instanceName = System.getProperty("bayer.instanceName");
systemPath = System.getProperty("bayer.home");
if (systemPath == null)
systemPath = ".";
propsFile = new File(System.getProperty("bayer.home") + File.separator + "bayer.properties");
}
Please tell me where this properties , bayer.instanceName and bayer.home would be defined ?? For more information i am using Apache Tomcat 6.0 server and Linux Environment .