org.springframework.beans.factory
Class FactoryBeanCircularReferenceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.beans.BeansException
org.springframework.beans.FatalBeanException
org.springframework.beans.factory.BeanCreationException
org.springframework.beans.factory.FactoryBeanCircularReferenceException
- All Implemented Interfaces:
- java.io.Serializable
- public class FactoryBeanCircularReferenceException
- extends BeanCreationException
Exception thrown if a FactoryBean is involved in a circular reference.
A circular reference with a FactoryBean cannot be solved by eagerly
caching singleton instances like with normal beans. The reason is that
every FactoryBean needs to be fully initialized before it can
return the created bean, while only specific normal beans need
to be initialized - that is, if a collaborating bean actually invokes
them on initialization instead of just storing the reference.
- Since:
- 30.10.2003
- Author:
- Juergen Hoeller
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
FactoryBeanCircularReferenceException
public FactoryBeanCircularReferenceException(java.lang.String beanName,
java.lang.String msg)
Copyright (C) 2003-2004 The Spring Framework Project.