tags:

views:

50

answers:

1

I like to know JSP and Servlet container are same? Which are they? Is only one container responsible for calling Service methods of both? Than why do we call Jsp container and Servlet container?

+2  A: 

JSPs are servlets. So a servlet container is a JSP container.

Ralph Stevens