org.springframework.beans.factory
Class FactoryBeanCircularReferenceException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.springframework.core.NestedRuntimeException
                  extended byorg.springframework.beans.BeansException
                      extended byorg.springframework.beans.FatalBeanException
                          extended byorg.springframework.beans.factory.BeanDefinitionStoreException
                              extended byorg.springframework.beans.factory.FactoryBeanCircularReferenceException
All Implemented Interfaces:
java.io.Serializable

public class FactoryBeanCircularReferenceException
extends BeanDefinitionStoreException

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

Constructor Summary
FactoryBeanCircularReferenceException(java.lang.String msg)
           
 
Methods inherited from class org.springframework.core.NestedRuntimeException
getCause, getMessage, printStackTrace, printStackTrace
 
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
 

Constructor Detail

FactoryBeanCircularReferenceException

public FactoryBeanCircularReferenceException(java.lang.String msg)


Copyright (C) 2003-2004 The Spring Framework Project.