I've searched the forum but I just haven't been able to discern whether or not Hibernate 3.2.6.ga supports lazy loading of OneToOne associations. While there are quite a few forum postings on the subject, many are old. So, with that said, does Hibernate 3.2.6ga support lazy loading of OneToOne associations?
For what it's worth, I've tried both of the following (to no avail)...
Code:
@OneToOne(optional = false, fetch = FetchType.LAZY, cascade = CascadeType.ALL)
private FormSet formSet = new FormSet();
... and ...
Code:
@OneToOne(optional = false, fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@LazyToOne(LazyToOneOption.NO_PROXY)
private FormSet formSet = new FormSet();
Thanks in advance,
Tom