I have this large very complex system and it contains several dispatchers and a few
servlets that are defined in the web.xml file. One dispatcher in particular is a set of services.
Of course good documentation is important in this case, but the thought crossed my mind that it would be nice if I could create a page that dynamically listed the services available.
So the question is in two parts really
1. Can I programatically get a list of servlets and their mappings from the web.xml?
2. Can I programatically get a list of services bound via spring using RequestMapping annotations?
I hope that was not too confusing.