Servlet Mapping Help - Possible to Avoid Referencing Context Name?
- by AJ
Hi all,
I am working on a Spring application and trying to get my URL mapping correct. What I would like to have work is the following:
http://localhost:8080/idptest -> doesn't work
But instead, I have to reference the context name in my URL in order to resolve the mapping:
http://localhost:8080/<context_name>/idptest -> works
…