Multiple choice technology architecture

Web container translates JSP to Servlet for every request of the JSP

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

JSP pages are translated to servlets only ONCE - the first time they are accessed or when the web container starts. The generated servlet is then compiled and cached. Subsequent requests execute the same compiled servlet without retranslation. Only if the JSP source changes will it be retranslated.