Processing of a Client Request by a J2EE Server
Posted:
This post is with respect to my previous post in this forum.
Processing of Client Request by J2EE Server
1. The client sends request to the server.
2. A Servlet (Controller) processes request and call corresponding Java Beans.
3. Java Beans (Model) executes the application logic and use services that are provided by the application server during the execution.
4. The Servlet selects the appropriate JSP and dynamically displays the result.
5. The JSP (View) fetches the result from model and dynamically builds it into HTML template.
6. This result is returned to the client.
Best regards
Rajnikanth
Processing of Client Request by J2EE Server
1. The client sends request to the server.
2. A Servlet (Controller) processes request and call corresponding Java Beans.
3. Java Beans (Model) executes the application logic and use services that are provided by the application server during the execution.
4. The Servlet selects the appropriate JSP and dynamically displays the result.
5. The JSP (View) fetches the result from model and dynamically builds it into HTML template.
6. This result is returned to the client.
Best regards
Rajnikanth