[b]Hibernate version:[/b] 3.1.3
If I have three classes like the following:
class A {
private product Product;
public Product getProduct() {
return this.product;
}
public void setProduct(Product product) {
this.product = product;
}
}
class B extends A {
}
class C extends B {
}
Mapping document maps class B and class C as joined subclass (the class A used as root of mi hierarcy is used also in other subclasses and is not mapped at all).
If I instrument both three classes and I retrieve a persistent instance of the class C via a simple CriteriaQuery, is it lazy loading of product property enabled or not?
Thanks,
Bye
_________________ Riccardo Palombella
Accenture S.p.a.
Milan
Italy
|