A JSP container provides the working to support JSPs. Typically a JSP container is built using the existing
Servlet container, that is it can be considered an extension of it.
Theoretically it is possible to support a JSP container without requiring Servlets 'as such', but would probably result in more rather than less work to implement.
IN
tomcat, JSPs get configured in the conf/web.xml file. I could post the mappings but you might find the journey interesting yourself.
Dave