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

The JSP translation to servlet happens only once when the JSP is first requested or when it has been modified. The web container compiles the JSP into a servlet class and caches it. Subsequent requests execute the already-compiled servlet without retranslation. This makes JSP processing efficient after the initial compilation.