public interface BeanClassLoaderAware extends Aware
class loader
; that is, the class loader used by the
present bean factory to load bean classes.
This is mainly intended to be implemented by framework classes which have to pick up application classes by name despite themselves potentially being loaded from a shared class loader.
For a list of all bean lifecycle methods, see the
BeanFactory javadocs
.
BeanNameAware
,
BeanFactoryAware
,
InitializingBean
Modifier and Type | Method and Description |
---|---|
void |
setBeanClassLoader(ClassLoader classLoader)
Callback that supplies the bean
class loader to
a bean instance. |
void setBeanClassLoader(ClassLoader classLoader)
class loader
to
a bean instance.
Invoked after the population of normal bean properties but
before an initialization callback such as
InitializingBean's
InitializingBean.afterPropertiesSet()
method or a custom init-method.
classLoader
- the owning class loader; may be null
in
which case a default ClassLoader
must be used, for example
the ClassLoader
obtained via
ClassUtils.getDefaultClassLoader()