I've got a regular java file that I use to update and query a mysql database but I need to take configurable options in that file (like host name, password, etc) and put it in the web.xml file (or perhaps another file if that's an option, but ideally in web.xml).
But I don't know how to get access to web.xml values from a regular non-servlet java file.
Or would I need to read the xml (like any other xml file... or is there a shortcut route to this...)
ServletContextListener#contextInitialized()
(as per your previous question). That would make a lot difference in the correct answer... – Shrum