public abstract class AbstractRefreshableApplicationContext extends AbstractApplicationContext
ApplicationContext
implementations which are supposed to support multiple calls to AbstractApplicationContext.refresh(),
creating a new internal bean factory instance every time.
Typically (but not necessarily), such a context will be driven by
a set of config locations to load bean definitions from.
The only method to be implemented by subclasses is loadBeanDefinitions(org.springframework.beans.factory.support.DefaultListableBeanFactory),
which gets invoked on each refresh. A concrete implementation is supposed to load
bean definitions into the given
DefaultListableBeanFactory,
typically delegating to one or more specific bean definition readers.
Note that there is a similar base class for WebApplicationContexts.
org.springframework.web.context.support.AbstractRefreshableWebApplicationContext
provides the same subclassing strategy, but additionally pre-implements
all context functionality for web environments. There is also a
pre-defined way to receive config locations for a web context.
Concrete standalone subclasses of this base class, reading in a
specific bean definition format, are ClassPathXmlApplicationContext
and FileSystemXmlApplicationContext, which both derive from the
common AbstractXmlApplicationContext base class;
AnnotationConfigApplicationContext
supports @Configuration-annotated classes as a source of bean definitions.
loadBeanDefinitions(org.springframework.beans.factory.support.DefaultListableBeanFactory),
DefaultListableBeanFactory,
org.springframework.web.context.support.AbstractRefreshableWebApplicationContext,
AbstractXmlApplicationContext,
ClassPathXmlApplicationContext,
FileSystemXmlApplicationContext,
AnnotationConfigApplicationContextAPPLICATION_EVENT_MULTICASTER_BEAN_NAME, LIFECYCLE_PROCESSOR_BEAN_NAME, logger, MESSAGE_SOURCE_BEAN_NAMECONFIG_LOCATION_DELIMITERS, CONVERSION_SERVICE_BEAN_NAME, ENVIRONMENT_BEAN_NAME, LOAD_TIME_WEAVER_BEAN_NAME, SYSTEM_ENVIRONMENT_BEAN_NAME, SYSTEM_PROPERTIES_BEAN_NAME| 构造器和说明 |
|---|
AbstractRefreshableApplicationContext()
Create a new AbstractRefreshableApplicationContext with no parent.
|
AbstractRefreshableApplicationContext(ApplicationContext parent)
Create a new AbstractRefreshableApplicationContext with the given parent context.
|
| 限定符和类型 | 方法和说明 |
|---|---|
protected void |
assertBeanFactoryActive()
Overridden to turn it into a no-op: With AbstractRefreshableApplicationContext,
getBeanFactory() serves a strong assertion for an active context anyway. |
protected void |
cancelRefresh(org.springframework.beans.BeansException ex)
Cancel this context's refresh attempt, resetting the
active flag
after an exception got thrown. |
protected void |
closeBeanFactory()
Subclasses must implement this method to release their internal bean factory.
|
protected org.springframework.beans.factory.support.DefaultListableBeanFactory |
createBeanFactory()
方法实现说明:为我们的spring 上下文创建我们的内置的beanFactory
|
protected void |
customizeBeanFactory(org.springframework.beans.factory.support.DefaultListableBeanFactory beanFactory)
Customize the internal bean factory used by this context.
|
org.springframework.beans.factory.config.ConfigurableListableBeanFactory |
getBeanFactory()
Subclasses must return their internal bean factory here.
|
protected boolean |
hasBeanFactory()
Determine whether this context currently holds a bean factory,
i.e. has been refreshed at least once and not been closed yet.
|
protected abstract void |
loadBeanDefinitions(org.springframework.beans.factory.support.DefaultListableBeanFactory beanFactory)
Load bean definitions into the given bean factory, typically through
delegating to one or more bean definition readers.
|
protected void |
refreshBeanFactory()
方法实现说明:是AbstractApplicationContext对象的子类,用于springmvc来刷新容器调用
|
void |
setAllowBeanDefinitionOverriding(boolean allowBeanDefinitionOverriding)
Set whether it should be allowed to override bean definitions by registering
a different definition with the same name, automatically replacing the former.
|
void |
setAllowCircularReferences(boolean allowCircularReferences)
Set whether to allow circular references between beans - and automatically
try to resolve them.
|
addApplicationListener, addBeanFactoryPostProcessor, close, containsBean, containsBeanDefinition, containsLocalBean, createEnvironment, destroy, destroyBeans, doClose, findAnnotationOnBean, finishBeanFactoryInitialization, finishRefresh, getAliases, getApplicationListeners, getApplicationName, getAutowireCapableBeanFactory, getBean, getBean, getBean, getBean, getBean, getBeanDefinitionCount, getBeanDefinitionNames, getBeanFactoryPostProcessors, getBeanNamesForAnnotation, getBeanNamesForType, getBeanNamesForType, getBeanNamesForType, getBeansOfType, getBeansOfType, getBeansWithAnnotation, getDisplayName, getEnvironment, getId, getInternalParentBeanFactory, getInternalParentMessageSource, getMessage, getMessage, getMessage, getParent, getParentBeanFactory, getResourcePatternResolver, getResources, getStartupDate, getType, initApplicationEventMulticaster, initLifecycleProcessor, initMessageSource, initPropertySources, invokeBeanFactoryPostProcessors, isActive, isPrototype, isRunning, isSingleton, isTypeMatch, isTypeMatch, obtainFreshBeanFactory, onClose, onRefresh, postProcessBeanFactory, prepareBeanFactory, prepareRefresh, publishEvent, publishEvent, publishEvent, refresh, registerBeanPostProcessors, registerListeners, registerShutdownHook, resetCommonCaches, setDisplayName, setEnvironment, setId, setParent, start, stop, toStringaddProtocolResolver, clearResourceCaches, getClassLoader, getProtocolResolvers, getResource, getResourceByPath, getResourceCache, setClassLoaderclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitaddProtocolResolverpublic AbstractRefreshableApplicationContext()
public AbstractRefreshableApplicationContext(@Nullable
ApplicationContext parent)
parent - the parent contextpublic void setAllowBeanDefinitionOverriding(boolean allowBeanDefinitionOverriding)
DefaultListableBeanFactory.setAllowBeanDefinitionOverriding(boolean)public void setAllowCircularReferences(boolean allowCircularReferences)
Default is "true". Turn this off to throw an exception when encountering a circular reference, disallowing them completely.
AbstractAutowireCapableBeanFactory.setAllowCircularReferences(boolean)protected final void refreshBeanFactory()
throws org.springframework.beans.BeansException
refreshBeanFactory 在类中 AbstractApplicationContextorg.springframework.beans.BeansException - if initialization of the bean factory failedprotected void cancelRefresh(org.springframework.beans.BeansException ex)
AbstractApplicationContextactive flag
after an exception got thrown.cancelRefresh 在类中 AbstractApplicationContextex - the exception that led to the cancellationprotected final void closeBeanFactory()
AbstractApplicationContextAbstractApplicationContext.close() after all other shutdown work.
Should never throw an exception but rather log shutdown failures.
protected final boolean hasBeanFactory()
public final org.springframework.beans.factory.config.ConfigurableListableBeanFactory getBeanFactory()
AbstractApplicationContextNote: Subclasses should check whether the context is still active before returning the internal bean factory. The internal factory should generally be considered unavailable once the context has been closed.
getBeanFactory 在接口中 ConfigurableApplicationContextgetBeanFactory 在类中 AbstractApplicationContextnull)AbstractApplicationContext.refreshBeanFactory(),
AbstractApplicationContext.closeBeanFactory()protected void assertBeanFactoryActive()
getBeanFactory() serves a strong assertion for an active context anyway.protected org.springframework.beans.factory.support.DefaultListableBeanFactory createBeanFactory()
protected void customizeBeanFactory(org.springframework.beans.factory.support.DefaultListableBeanFactory beanFactory)
AbstractApplicationContext.refresh() attempt.
The default implementation applies this context's
"allowBeanDefinitionOverriding"
and "allowCircularReferences" settings,
if specified. Can be overridden in subclasses to customize any of
DefaultListableBeanFactory's settings.
beanFactory - the newly created bean factory for this contextDefaultListableBeanFactory.setAllowBeanDefinitionOverriding(boolean),
AbstractAutowireCapableBeanFactory.setAllowCircularReferences(boolean),
AbstractAutowireCapableBeanFactory.setAllowRawInjectionDespiteWrapping(boolean),
DefaultListableBeanFactory.setAllowEagerClassLoading(boolean)protected abstract void loadBeanDefinitions(org.springframework.beans.factory.support.DefaultListableBeanFactory beanFactory)
throws org.springframework.beans.BeansException,
IOException
beanFactory - the bean factory to load bean definitions intoorg.springframework.beans.BeansException - if parsing of the bean definitions failedIOException - if loading of bean definition files failedPropertiesBeanDefinitionReader,
XmlBeanDefinitionReader