Home Answers Viewqa Hibernate-Interview-Questions Define the session factory interface in hibernate?

 
 


ratna rathor
Define the session factory interface in hibernate?
1 Answer(s)      11 months ago
Posted in : Hibernate Interview Questions

Define the session factory interface in hibernate?

View Answers

June 11, 2012 at 6:23 PM


Session factory is used for manageing the session objects.public interface SessionFactory extends Referenceable, Serializable.It is in org.hibernate.SessionFactory.

It works as a factory for session and a client of connection provider. It also holds an optional cah of data that is reusable between transactions at a process, or cluster.

There is single sessionFactory for each database.

SessionFactory sessionFactory = configuration.buildSessionFactory();









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.