1.

Explain The General Flow Of Hibernate Communication With Rdbms.

Answer»

The general flow of HIBERNATE communication with RDBMS is :
• The Hibernate configuration is to be loaded and creation of configuration object is done. The mapping of all hbm files will be performed automatically.
• Creation of SESSION FACTORY from the configuration object.
• Obtain a session from the session factory.
• Creation of HQL Query .
• Execution of the query in order to get the list of containing java objects.

The general flow of Hibernate communication with RDBMS is :
• The Hibernate configuration is to be loaded and creation of configuration object is done. The mapping of all hbm files will be performed automatically.
• Creation of session factory from the configuration object.
• Obtain a session from the session factory.
• Creation of HQL Query .
• Execution of the query in order to get the list of containing java objects.



Discussion

No Comment Found