Re: Lazily loading user defined types

2006-11-10 Thread Johannes Klose
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

Lazily loading user defined types

2006-11-07 Thread Johannes Klose
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