What is MVC application life cycle?
2303
15-Feb-2016
Updated on 23-Sep-2020
Shrikant Mishra
20-Aug-2020As we know that any web application has two main execution steps, first understanding the request and depending on the type of the request, sending out an appropriate response. MVC application life cycle has two main phases, first creating the request object and second sending the response to the browser.
When Creating the request object includes four basic steps:
Step 1: Fill route
Step 2: Fetch route
Step 3: Request context created
Step 4: Controller instance created
Anupam Mishra
15-Feb-2016