Archive for April, 2009
Using Jsp Technology
This article gives details of different usages of Jsp technology in isolation and also with other technologies.
Implicit Objects in JSP
Implicit object are those objects which are available in jsp by default. Developer does not need to declare these objects, the web container creates them. Such objects are discussed here.
Request Handling in JSP
Jsp works on simple request response model by handling requests through the _jspService() method of generated servlet. We discuss request processing in detail here.
Java Server Pages Standard Tag Library (JSTL)
Along with JSP technology, Sun offered a standard tag library called JavaServerPages Standard Tag Library (JSTL). We discuss details of JSTL in this article.
Unified Expression Language for JSP
Unified expression language is used in Jsps to avoid javascript to improve readability. Here we discuss details of this new version of expression language.
Using Custom Tags in JSP
If we look at the open source frameworks for presentation tier, you will find most of them providing custom tag libraries for the Jsp development.
Using Java Beans in JSP
Java bean is a Plain Old Java Object (POJO) having few attributes and getter and setter methods in it. These POJOs can be used in JSPs to send data to the server. Let us go through details of it.
Elements of Jsp
Jsp syntax contains many elements which are used to change behavior of a Jsp and subsequently the generated servlet. This article focuses on such elements.
JSP Life Cycle
This article explains Jsp lifecycle in detail.
Introduction to Java Server Pages (JSP)
This article introduces you with the basic concepts of JSP. It will also tell you how to write your first JSP.
