Monthly Archives: January 2011

Ultimate Paging practice through JQuery & Ajax.

JSP page Data Class (StudentMaster.java) Servlet (DataServlet.java) Output : Special Thanks to Rishita Parekh for Paging Logic

Posted in JQuery, JSP, Servlet | 1 Comment

How to disable Copy paste on Password Field

Another Easiest way :

Posted in JSP | 2 Comments

Types of java variables.

Java variables can be categorized into the following seven types: Class Variable Instance Variable Array Component Variable Method Parameter Variable Constructor Parameter Variable Exception Handler Parameter Variable Local Variable 1) Class Variable A java class variable is a field declared … Continue reading

Posted in Just 4 Knowledge | Leave a comment

JSF Request Processing Life Cycle

Here we will see what happens in each phase of the JSF Request Processing Life Cycle. The first step in the JSF Request Processing Life Cycle is to restore the original view from the request or from the server itself based on … Continue reading

Posted in JSF 2.0 | 2 Comments

Annotation in Java (2)

Below are the general guidelines to be followed while defining annotations: Annotation declaration should start with an ‘at’ sign like @, following with an interface keyword, following with the annotation name. Method declarations should not have any parameters. Method declarations … Continue reading

Posted in Core JAVA | Leave a comment

Annotation in Java

Annotations Annotations provide data about a program that is not part of the program itself. They have no direct effect on the operation of the code they annotate. Annotations have a number of uses, among them: Information for the compiler … Continue reading

Posted in Core JAVA | Leave a comment