I have a properties file which I have put in the classpath and I am trying to load it from a JSP:
InputStream stream = application.getResourceAsStream("/alert.properties");
Properties props = new Properties();
props.load(stream);
But I am getting a FileNotFoundException
.