Google News
logo
Java Servlets - Interview Questions
What does servlet-mapping mean?
Servlet mapping gives you the specific web container of which java servlet should be invoked for a particular URL. It would map the URL patterns to the servlet. When a client sends a request, the servlet container determines which application it would forward it to, and the system matches the context path to perform servlet mapping.
Advertisement