🎴 Flashcard Mode

Java Web Development: JSP, MVC and Server Operations

Card1 / 20
Mastered0
Review0
QuestionClick to flip

What are the life cycle methods in jsp?

AnswerClick to flip back
A
All of the above
💡 Explanation:

JSP has three life cycle methods: jspInit() is called when the JSP is initialized, _jspService() handles each request (the option has a minor typo omitting the underscore), and jspDestroy() is called when the JSP is taken out of service. All three methods are part of the JSP life cycle.

Change Mode