Posted by: Naveen Kapoor on: December 29, 2008
Java allows us to create reusable objects in memory. All of those objects exist only as long as the Java virtual machine. With object serialization, we can flatten our objects and reuse them in powerful ways.
Object serialization is the process of saving an object’s state to a sequence of bytes, and also rebuilding those bytes [...]
Posted by: Naveen Kapoor on: December 26, 2008
Java Server Faces is a Java framework for building user interfaces for Web applications. It simplifies the development of the user interface, which is one of the more difficult parts of Web development. JSF technology offers a basic set of standard, reusable UI components which allows developers to quickly and easily build User Interface for [...]
Posted by: Naveen Kapoor on: December 24, 2008
What is the difference between Interface and Abstract class or when to use Interfaces and when to use Abstract class ?
Different ppl give different reasons for the same and the major discussions on internet will give the basic differences or I can say the java specifications for this above discussions .
After going thru lot of discussions [...]