Author Archives | JavaBeat

About JavaBeat ( subscribe )

ServletContextListener Example

February 26, 2009

3 Comments

This tips explains the how to use ServletContextListener. There will be only one ServletContext for each web application. ServletContext will be created while deploying the application. Once the ServletContext is created, it will be used by all the servlets and jsp files in the same application. ServletContext is also called as the application scope variables [...]

email

Dynamic Attributes in Tag File in JSP 2.0

February 26, 2009

1 Comment

As we know that we can develop custom tag library as a simple tag file in JSP 2.0 and these tag files can accept attributes from the invoking JSP page. But one drawback of this approach is that we need to declare all the attributes in the tag file. JSP 2.0 provides a feature called [...]

Variable Directive in JSP 2.0 Custom Tags

February 25, 2009

0 Comments

This tips explains how to use the variable directive in the custom tags in JSP 2.0. There is time when JSP page needs to access the variable declared inside the Tag files. In the previous version we have to extend the tag library to declare the variables and need the special handling for those variables. [...]

Custom Tags in JSP 2.0

February 25, 2009

0 Comments

Tag Files in JSP 2.0 This tips explains about what are the advantages in the Custom Tags in JSP 2.0. It also compares it with the previous JSP versions. Lets look into the tips for more detail. Developing custom tags in the previous JSP versions are tedious and it is considered as one of the [...]

Custom Tag Libraries and Tag Files in JSP 2.0

February 25, 2009

0 Comments

With previous versions of JSP developing custom tag libraries was possible only by writing Java classes. As a result knowledge of Java was a must. JSP 2.0 introduces a new way of developing custom tag library using plain JSP. This enables JSP developers, who dont know Java, to develop custom tag libraries as Tag files. [...]

Error Pages in JSP 2.0

February 24, 2009

0 Comments

We can configure error pages in jsp and servlets to direct the control to a custom error page, showing a friendly error message to the user when an exception is thrown in the page. But tracking or logging the exception information is not very easy in JSP 1.2. JSP 2.0 fixes this problem by switching [...]

Ternary Operator in JSP 2.0 Expression Language(EL)

February 23, 2009

0 Comments

A very common need in a JSP page is to include a piece of template text only if a certain condition is true. With JSP 1.2 and JSTL 1.1, this is typically done using a block, but that’s a very verbose solution. JSP 2.0 adds a new conditional operator to the Expression Language(EL) to deal [...]

Working with arrays : java.util.Arrays class

February 19, 2009

0 Comments

The java.util.Arrays class is basically a set of static methods that are all useful for working with arrays. The Arrays class contains various methods for manipulating arrays (such as sorting and searching). In addition to that, it has got many utility methods for using with arrays such as a method for viewing arrays as lists [...]

How to use Enum in Switch?

February 19, 2009

18 Comments

Enums introduced in Java 5.0 (Read: New features in Java 5.0) allows switching to be done based on the enums values. It is one of the greatest new features introduced from the version 5.0. Prior to Java 1.4, switch only worked with int, short, char, and byte values. However, since enums have a finite set of [...]

Adding methods to an Enum

February 19, 2009

0 Comments

Enums introduced in Java 5.0 are just compiled java classes with some extra behaviour. So you can basically do whatever you can in a normal java class inside an enum as well. That includes adding methods , class level variables and constructors to an enum. Adding methods to an enum works just like adding methods [...]