How to show all the routes mapped in a spring based application? In rails this is done using rake routes.
I use two mapping methods of spring to create the url-mappings:
- @RequestMapping
- SimpleUrlHandler
I have used the unix command grep and cut to get all the mappings of @RequestMapping. I wonder if there is some way i can get these details from the spring application.