Multiple choice technology web technology

What is the first entry point in the request processing life cycle of Struts 2 Framework

  1. Servlet

  2. Servlet Filter

  3. JSP

  4. None of The Above

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

In Struts 2, the first entry point in the request processing lifecycle is a Servlet Filter (FilterDispatcher or StrutsPrepareAndExecuteFilter). This filter intercepts all requests and dispatches them to the appropriate action. This is different from Struts 1 which used a central ActionServlet.