I have a properties file that I put in the classpath and I'm trying to load it from JSP:
InputStream stream = application.getResourceAsStream("/alert.properties");
Properties props = new Properties();
props.load(stream);
But I get it FileNotFoundException.
source
share