Step 11- JSP API

Learn with our youtube video –

JSP API – Comparison between 2 JSP apis –

APIDescriptionCode Snippet
javax.servlet.jspThis package contains the main interface and classes for the JavaServer Pages (JSP) technology. It includes classes for the JSP engine, as well as classes for generating and processing JSP pages.<%@ page import=
“javax.servlet.jsp.*” %>
javax.elThe javax.el package provides the Expression Language (EL) for JSP and JavaServer Faces. The EL allows developers to easily access data stored in JavaBeans components, as well as to manipulate that data.<%@ page import=
“javax.el.*” %>