0 votes
in Hibernate by

What design patterns does the Hibernate framework use?

1 Answer

0 votes
by

Some design patterns include:

  1. Data Mapper, which moves data between objects and a database, keeping them independent of each other and the mapper
  2. Domain Model Pattern, which is a domain object model that incorporates both behavior and data
  3. Proxy Pattern, for lazy loading
  4. Factory pattern in SessionFactory
...