LazyLoadAccessorsBytecodeTransformer.java | Class | This utility class will modify property accessors of classes that implement
the
Constrained interface and add lazy loading for properties with
manyToOne constraints.
This is done by modifying the bytecode of the getters by checking if the
value that is returned is
null , and in that case performing the
actual database call to fetch the property value. |