Cookies in Java

Posted in Java Development by admin - Jan 17 2010

A cookie, developed by the Netscape Corporation is a small piece of information that the HTTP server sends to the browser when the browser starts a new connection and later read back from the client. The cookies are used to handle the stateless nature of HTTP protocol by using them as a user session identifier. […]

Java Data Object

Posted in Java Development by admin - Jan 11 2010

Java Data Object is an API (Application program interface) ,used by java programing language to interact with the database. It is very effective with both relational and object oriented databases. JDO allows the programmer to access the database using java instead of using specific database languages such as SQL. JDO allows the programmer to persist […]

Java Class Loader

Posted in Java Development by admin - Jan 11 2010

A Delegation Model (version 1.2 onwards) is used for loading class to the JVM. Class Loaders are structured in java is in a way that at start-up time the JVM doesn’t need to know anything about the classes that will be loaded at run time. The java containers such as EJB or Servlet containers uses […]