I've done some hacking on the LazyResultLoader class and came to a
working solution. I created an interface named "Deferrable" which is
basically just a marker interface. Properties which can be lazily loaded
on user defined types are typed as interfaces which extend Deferrable.
If a result loa
Hi,
i'm trying to do lazy loading on user defined properties, e.q. beans on
1:1 relationships. However, it isn't working as i'm not using cglib. I
found a message in another thread in this list, stating that lazy
loading would work on user defined properties if they are typed as
interfaces. But t