Login
Remember
Register
Ask a Question
What design patterns does the Hibernate framework use?
0
votes
asked
Jul 27, 2024
in
Hibernate
by
SakshiSharma
What design patterns does the Hibernate framework use?
design
patterns
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 27, 2024
by
SakshiSharma
Some design patterns include:
Data Mapper, which moves data between objects and a database, keeping them independent of each other and the mapper
Domain Model Pattern, which is a domain object model that incorporates both behavior and data
Proxy Pattern, for lazy loading
Factory pattern in SessionFactory
...