Hibernate version:
3.2
Hallo^2,
lazy loading funktioniert nicht so, wie ich mir das vorstelle. Eine Tabelle Html und eine Text (extrahierter Text, ohne HTML tags), Html ist one-to-one auf Text:
Code:
public class Html
{
@OneToOne( fetch = FetchType.LAZY, cascade = CascadeType.ALL )
@PrimaryKeyJoinColumn
private Text text;
Mit folgender query laedt der jetzt jede Text Entitaet einzeln, obwohl die mich ueberhaupt nicht interessieren; FetchType.LAZY hilft tut's also nicht.
Code:
FROM Html h WHERE h.urlId != ALL (SELECT urlId FROM Text)