Can you list out all design patterns used in Hibernate frame work?
I knew some some of design patterns like DAO, ORM, etc.
If possible some examples.
Can you list out all design patterns used in Hibernate frame work?
I knew some some of design patterns like DAO, ORM, etc.
If possible some examples.
Design patterns used in Hibernate :
Design patterns used in Hibernate
Domain Model Pattern – An object model of the domain that incorporates both behavior and data.
Proxy Pattern for lazy loading.
Unit of Work (as part of Session object)
Factory Pattern in Session Factory
Query Object for Criterion API
Data Mapper – A layer of Mappers that moves data between objects and a database while keeping them independent of each other and the mapper itself.
Active Record Pattern
DAO
Object-Relational Mapping(ORM)
etc