Lazy « AOP « Spring Q&A





1. Is there a spring lazy proxy factory in Spring?    stackoverflow.com

Wicket has this device called a lazy proxy factory. Given:

<property name="foo" ref="beanx"/>
the idea is to auto-generate a proxy in place of 'beanx', and then only initialize beanx if and when something ...

2. Lazy loading without AOP    forum.springsource.org

Hello, I have used the HibernateInterceptor to allow for the lazy loading of objects and it seems to work fine. However, our company's architects have declined to allow the use of ...

3. Null proxy with Lazy loading    forum.springsource.org

Null proxy with Lazy loading I'm lazy loading a class from a manytoone relationship. It all looks fine but when I call a method on the class I get a NullPointerException. ...