Is it permissible to have multiple entries as the context root of a servlet?
For instance, all Sun examples use a single /catalog
or something similar as the context root, but could it be /catalog/furniture
as well?
The Servlet 2.4 Specification is not specific here.
Context Path: The path prefix associated with the
ServletContext
that this servlet is a part of. If this context is the “default” context rooted at the base of the Web server’s URL name space, this path will be an empty string. Otherwise, if the context is not rooted at the root of the server’s name space, the path starts with a’/’ character but does not end with a’/’ character.