In this tutorial, you will learn application implicit object in JSP. It is an instance of javax.servlet.ServletContext. It is used for getting initialization parameters and… [Read More]
pageContext Implicit Object in JSP with examples
In this guide, you will learn pageContext implicit object in JSP. It is an instance of javax.servlet.jsp.PageContext. JSP pageContext implicit object can be used to… [Read More]
Out Implicit Object in JSP with examples
In this tutorial, you will learn out implicit object in JSP with the help of examples. It is an instance of javax.servlet.jsp.JspWriter. This allows user… [Read More]
Exception Implicit Object in JSP with examples
In this tutorial, you will learn exception implicit object in JSP. It is an instance of java.lang.Throwable and mainly used for exception handling in JSP…. [Read More]
Response Implicit Object in JSP with examples
In this tutorial, you will learn response implicit object in JSP. It is an instance of javax.servlet.http.HttpServletRequest and mainly used for modifying the response which… [Read More]
Request Implicit Object in JSP with examples
In this tutorial, you will learn request implicit object in JSP. It is used to get the data on a JSP page which has been… [Read More]
Session Implicit Object in JSP with examples
In this tutorial, you will learn session implicit object in JSP. JSP session implicit object is the most frequently used implicit object in JSP. The… [Read More]
JSP Actions – Java Server Pages
JSP Actions lets you perform some action. Directives vs Actions Directives are used during translation phase while actions are used during request processing phase. Unlike… [Read More]
JSP Scriptlet Tag (Scripting elements)
JSP scriptlet tag also known as Scriptlets are nothing but java code enclosed within <% and %> tags. The main purpose of scriptlet tag is… [Read More]
JSP Directives – Page, Include and TagLib
JSP Directives control the processing of an entire JSP page. It gives directions to the server regarding processing of a page. There are three types… [Read More]
Java Server Pages (JSP) Life Cycle
JSP pages are saved with .jsp extension which lets the server know that this is a JSP page and needs to go through JSP life… [Read More]
Introduction to Java Server Pages – JSP Tutorial
JSP is a server side technology that does all the processing at server. It is used for creating dynamic web applications, using java as programming… [Read More]