类 CustomScopeConfigurer
- java.lang.Object
- org.springframework.beans.factory.config.CustomScopeConfigurer
- 所有已实现的接口:
Aware,BeanClassLoaderAware,BeanFactoryPostProcessor,Ordered
public class CustomScopeConfigurer extends Object implements BeanFactoryPostProcessor, BeanClassLoaderAware, Ordered
SimpleBeanFactoryPostProcessorimplementation that registers customScope(s)with the containingConfigurableBeanFactory.Will register all of the supplied
scopeswith theConfigurableListableBeanFactorythat is passed to thepostProcessBeanFactory(ConfigurableListableBeanFactory)method.This class allows for declarative registration of custom scopes. Alternatively, consider implementing a custom
BeanFactoryPostProcessorthat callsConfigurableBeanFactory.registerScope(java.lang.String, org.springframework.beans.factory.config.Scope)programmatically.- 从以下版本开始:
- 2.0
- 作者:
- Juergen Hoeller, Rick Evans
- 另请参阅:
ConfigurableBeanFactory.registerScope(java.lang.String, org.springframework.beans.factory.config.Scope)
字段概要
从接口继承的字段 org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
构造器概要
构造器 构造器 说明 CustomScopeConfigurer()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidaddScope(String scopeName, Scope scope)Add the given scope to this configurer's map of scopes.intgetOrder()Get the order value of this object.voidpostProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)Modify the application context's internal bean factory after its standard initialization.voidsetBeanClassLoader(ClassLoader beanClassLoader)Callback that supplies the beanclass loaderto a bean instance.voidsetOrder(int order)voidsetScopes(Map<String,Object> scopes)Specify the custom scopes that are to be registered.
构造器详细资料
CustomScopeConfigurer
public CustomScopeConfigurer()
方法详细资料
setScopes
public void setScopes(Map<String,Object> scopes)
Specify the custom scopes that are to be registered.The keys indicate the scope names (of type String); each value is expected to be the corresponding custom
Scopeinstance or class name.
addScope
public void addScope(String scopeName, Scope scope)
Add the given scope to this configurer's map of scopes.- 参数:
scopeName- the name of the scopescope- the scope implementation- 从以下版本开始:
- 4.1.1
setOrder
public void setOrder(int order)
getOrder
public int getOrder()
从接口复制的说明:OrderedGet the order value of this object.Higher values are interpreted as lower priority. As a consequence, the object with the lowest value has the highest priority (somewhat analogous to Servlet
load-on-startupvalues).Same order values will result in arbitrary sort positions for the affected objects.
- 指定者:
getOrder在接口中Ordered- 返回:
- the order value
- 另请参阅:
Ordered.HIGHEST_PRECEDENCE,Ordered.LOWEST_PRECEDENCE
setBeanClassLoader
public void setBeanClassLoader(@Nullable ClassLoader beanClassLoader)
从接口复制的说明:BeanClassLoaderAwareCallback that supplies the beanclass loaderto a bean instance.Invoked after the population of normal bean properties but before an initialization callback such as
InitializingBean'sInitializingBean.afterPropertiesSet()method or a custom init-method.- 指定者:
setBeanClassLoader在接口中BeanClassLoaderAware- 参数:
beanClassLoader- the owning class loader
postProcessBeanFactory
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException
从接口复制的说明:BeanFactoryPostProcessorModify the application context's internal bean factory after its standard initialization. All bean definitions will have been loaded, but no beans will have been instantiated yet. This allows for overriding or adding properties even to eager-initializing beans.- 指定者:
postProcessBeanFactory在接口中BeanFactoryPostProcessor- 参数:
beanFactory- the bean factory used by the application context- 抛出:
BeansException- in case of errors