Hibernate - SessionFactory & Session
- SessionFactory is a factory class for session objects.
- SessionFactory will available for whole application but session will available for a single transaction.
- SessionFactory is thread safe but session is not thread safe.
- SessionFactory will create using,
Configuration.buildSessionFactory()
Comments
Post a Comment