| Author |
Internal working of Hibernate
|
somasundar venkatesh
Greenhorn
Joined: Mar 01, 2011
Posts: 14
|
|
Hi All,
Can anyone please provide me the internal working of the Hibernate. For eg like in the following steps like..
SessionFactory sf=new Configuration().configure().buildSessionFactory();
Session session =sessionFactory.openSession();
..............................etc..
What are the objects created in each steps and how internally it works.
Can anyone please provide me complete picture of this and also provide me the details regarding the best resources to learn Hibernate and Springs as well.\
Thanks and Regards,
Somu
|
 |
Pavan Kumar Reddy
Greenhorn
Joined: Dec 11, 2009
Posts: 13
|
|
Hi,
To understand what is really going on inside the below steps, you can look hibernate source code and do some analysis.
SessionFactory sf=new Configuration().configure().buildSessionFactory();
Session session =sessionFactory.openSession();
That will help you to understand everything in that what's going and what are all the objects created.
Thanks
Pavan
http://softwares-list.blogspot.com
|
 |
 |
|
|
subject: Internal working of Hibernate
|
|
|