Skip to content

jsp

jsp life cycle

Life Cycle of JSP

A jsp page is not executed directly. it follows a well-defined process that first involves the translation of into its corresponding servlet and then compilation source file class file. resulting translated loaded memory initialized, similar… 

JSP in Java

JSP in Java

JSP stands for Java Server Pages, which is a Java-based technology developed by SUN Microsystems to simplify the development of dynamic Web pages. JSP pages provide a means of separating the presentation logic from the… 

Configure Filters

Configure Filters

The web.xml file is used to configure filters to resources, such as a servlet, JSP page, or Web application. This configuration helps to process the request and response objects. With the introduction of annotations in…