Content deleted Content added
mNo edit summary |
m v2.05b - Bot T20 CW#61 - Fix errors for CW project (Reference before punctuation) |
||
Line 44:
==Persistence==
Hibernate provides transparent persistence for [[Plain Old Java Object]]s (POJOs).{{sfn|Bauer|King|Gregory|2016}}{{rp|§=3.2.2|pp=37-38}} The only strict requirement for a persistent class is a [[Nullary constructor|no-argument constructor]],{{sfn|Bauer|King|Gregory|2016}}{{rp|§=3.2.3|pp=39}}
Collections of data objects are typically stored in Java collection classes, such as implementations of the {{code|Set}} and {{code|List}} interfaces. [[Generics in Java|Java generics]], introduced in Java 5, are also supported. Hibernate can be configured to [[lazy load]] associated collections.{{sfn|Bauer|King|Gregory|2016}}{{rp|§=12.1|pp=289-293}} Lazy loading is the default as of Hibernate 3.
|