Skip to main content

Posts

Showing posts with the label Java Server Page

25 Best JSP Interview Questions and Answers - Java J2EE

What Is JSP? JSP stands for Java Server Page . JSP are internally converted to Servlet (.class) for processing Java code. JSP is a server side technology which is used for creating dynamic web pages. JSP is an extension of Servlets . JSP comes with SUN’s J2EE platforms. What Are the Advantages of JSP? JSP enables server side programming abilities. JSP represents HTML pages embed with Java code. JSP is cross platform technology. JSP can create database driven Web applications. Is JSP Technology extensible? Yes!, JSP is an extensible by using the modification of tags. What Are the JSP Life Cycle? The JSP life-cycle is defined as the process started with its creation which later translated to a servlet and afterward servlet life-cycle comes into play. A JSP Life cycle consists of following steps: 1.       Translation of JSP to Servlet code 2.       Compilation of Servlet to byte code 3.  ...