Up until now I was able to load the properties files via ClassLoader since it was a standalone app -> jar
/**
* Path and filename for {@code.properties}.
*/
private String propertiesFileName = "./com/config/resources/config.properties";
propertiesFromFile.load(ClassLoader.getResourceAsStream(propertiesFileName));
Now I need to use this jar within a web app the problem is that via ClassLoader I get NULL
How can make that inside jar will be able to read is properties file ?
Is there I why via maven ?
Please advice
Thanks