Hi Jay,
I think I found documentation for lazy properties (different from lazy associations):
http://www.hibernate.org/hib_docs/v3/re ... properties
If I understand the above correctly, there are 2 ways to solve this:
1) setting up buildtime bytecode instrumentation
2) using projection of the class <-- preferred?
3) creating a class wrapper around the blob(s)/clob(s) to obfuscate the relation and allow for easier lazy loading <-- not elegant?
I have a similar problem, except I do not run out of memory. Page navigation is just (incredibly) slower.
I would be curious to know which route you decide to take...
Hope this helps,
-- Dan