Sunday, May 24, 2009

Hibernate makes the java programmer life easy

   Hibernate is really amazing framework for the Object Relational Mapping(ORM) of persistance in java programs. Hibernate maps the table in a datable to the Java Beans to give the programmer home like feeling. Java Beans are simple (Plain Old Java Object)POJO. Programmer using hibernate need not learn about the database deeply but an overview is enough for them to program. Programer work with the POJO and not with the database directly so it becomes every easy for him to handle the databases. Using Hibernate increases:
1) Maintainablity
2) Extensibility
3) Simplicity
 Hibernate vanishes the nightmare of long and complex database program for programer. Hibernate shorten the code and make it easy to handle.