Skip to main content

Posts

Showing posts from April, 2020

JSP (JAVA SERVER PROGRAM)

JSP (JAVA SERVER PROGRAM) Introduction JSP stands for Java Server Pages. It is server side technology. It is used for creating web applications. It is used to create dynamic web content. In this JSP tags are used to insert JAVA code into HTML pages. It is an advanced version of Servlet Technology. It is a Web based technology helps us to create dynamic and platform independent web pages. In this, Java code can be inserted in HTML/ XML pages or both. JSP is first converted into a servlet by the JSP container before processing the client’s request. JSP technology is used to create web application just like Servlet technology. It can be thought of as an extension to Servlet because it provides more functionality than a servlet, such as expression language, JSTL, etc. A JSP page consists of HTML tags and JSP tags. The JSP pages are easier to maintain than Servlet because we can separate designing and development. It provides some additional features such as Expres