org.springframework.beans.factory.config
Interface ConfigurableListableBeanFactory
- All Known Implementing Classes:
- DefaultListableBeanFactory
- public interface ConfigurableListableBeanFactory
- extends AutowireCapableBeanFactory, ConfigurableBeanFactory, ListableBeanFactory
SPI interface to be implemented by most if not all listable bean factories.
In addition to ConfigurableBeanFactory, provides a way to pre-instantiate singletons.
Allows for framework-internal plug'n'play, e.g. in AbstractApplicationContext.
- Author:
- Juergen Hoeller
- Since: 03.11.2003
- See Also: org.springframework.context.support.AbstractApplicationContext.getBeanFactory()
| Method Summary |
void | preInstantiateSingletons() Ensure that all non-lazy-init singletons are instantiated, also considering
FactoryBeans. |
preInstantiateSingletons
public void preInstantiateSingletons()
- Ensure that all non-lazy-init singletons are instantiated, also considering
FactoryBeans. Typically invoked at the end of factory setup, if desired.