Archive for April, 2009

Using Jsp Technology

This article gives details of different usages of Jsp technology in isolation and also with other technologies.

JEE, Jsp, Tech Notes

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.

JEE, Jsp, Tech Notes

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.

JEE, Jsp, Tech Notes

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.

JEE, Jsp, Tech Notes

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.

JEE, Jsp, Tech Notes

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.

JEE, Jsp, Tech Notes

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.

JEE, Jsp, Tech Notes

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.

JEE, Jsp, Tech Notes

JSP Life Cycle

This article explains Jsp lifecycle in detail.

JEE, Jsp, Tech Notes

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.

JEE, Jsp, Tech Notes