JSP TUTORIAL
INTRODUCTION OF JSP: 1.What is jsp. 2.How jsp works in Servlet. 3.JSP VS Servlet. 4.JSP life Cycle. What is jsp: JSP ( Java Server Page) is a server side technology used to create dynamic , paltform-indepentent web application using java. When jsp page requested by User, it is complied into a servlet by the server and the server handle the request. How jsp Works (behind the scenes): A (.jsp) file is requested by a user.. The JSP Engine on the server converts it into the Servlet. The servlet is complied and executed. The Response (HTML) is send back to the browser. JSP VS Servlet: JSP life Cycle: LINK : https://data-flair.training/blogs/jsp-life-cycle/ DIFFERENCE BETWEEN A WEBSERVER ,WEB CONTAINER AND AN APPLICATION SERVER: WEB SERVER: It is receives HTTP request , intercepts it. It also processes the HTTP response to the web browser of the client. EX: Apache Web server. WEB CONTAINER : A web container is J2EE compliant implementation.Its mains the job is run the ru...