how to read a properties file from a jsf project...
Hello!
I'm new to jsf. I've created a properties file named configuration.properties under the WEB-INF folder.
From a java class located in com.mycomp.utils I try to read the properties
Properties p=new Properties();
p.load(new FileInputStream("/WEB-INF/configuration.properties"));
but the file is not found.
How can I actualy get the correct path of the file and make the things work?
Thanks
Sorin

