Hi,<br> How to lazy load the fields in the Embeddable object. I am doing this:<br>@Entity<br>Class A{<br>...<br>@Embedded<br>private B b;<br>}<br><br>------------------<br>@Embedded<br>Class B{<br><br>@Basic(fetch=FetchType.LAZY)<br>
@Column(...)<br>private String foo;<br><br>}<br><br>So here the field b in class A should be lazily loaded, but it's NOT.<br><br>What am I missing or doing wrong?<br><br>Thanks<br><br>