Hi, I have a web app in java, and in a servlet I need to load properties from a xml file.
The code is
XMLReader reader = XMLReaderFactory.createXMLReader();
...
FileInputStream fis = new FileInputStream("myconf.xml");
reader.parse(new InputSource(fis));
My question is: where should the myconf.xml file be placed in the war file so the servlet can find it?
Thanks