Class AspectJWeavingEnabler
- java.lang.Object
- org.springframework.context.weaving.AspectJWeavingEnabler
- All Implemented Interfaces:
Aware,BeanClassLoaderAware,BeanFactoryPostProcessor,LoadTimeWeaverAware,Ordered
public class AspectJWeavingEnabler extends Object implements BeanFactoryPostProcessor, BeanClassLoaderAware, LoadTimeWeaverAware, Ordered
Post-processor that registers AspectJ'sClassPreProcessorAgentAdapterwith the Spring application context's defaultLoadTimeWeaver.- Since:
- 2.5
- Author:
- Juergen Hoeller, Ramnivas Laddad
Field Summary
Fields Modifier and Type Field Description static StringASPECTJ_AOP_XML_RESOURCEFields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
Constructor Summary
Constructors Constructor Description AspectJWeavingEnabler()
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static voidenableAspectJWeaving(LoadTimeWeaver weaverToUse, ClassLoader beanClassLoader)Enable AspectJ weaving with the givenLoadTimeWeaver.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 classLoader)Callback that supplies the beanclass loaderto a bean instance.voidsetLoadTimeWeaver(LoadTimeWeaver loadTimeWeaver)Set theLoadTimeWeaverof this object's containingApplicationContext.
Field Detail
ASPECTJ_AOP_XML_RESOURCE
public static final String ASPECTJ_AOP_XML_RESOURCE
- See Also:
- Constant Field Values
Constructor Detail
AspectJWeavingEnabler
public AspectJWeavingEnabler()
Method Detail
setBeanClassLoader
public void setBeanClassLoader(ClassLoader classLoader)
Description copied from interface: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.- Specified by:
setBeanClassLoaderin interfaceBeanClassLoaderAware- Parameters:
classLoader- the owning class loader; may benullin which case a defaultClassLoadermust be used, for example theClassLoaderobtained viaClassUtils.getDefaultClassLoader()
setLoadTimeWeaver
public void setLoadTimeWeaver(LoadTimeWeaver loadTimeWeaver)
Description copied from interface:LoadTimeWeaverAwareSet theLoadTimeWeaverof this object's containingApplicationContext.Invoked after the population of normal bean properties but before an initialization callback like
InitializingBean'safterPropertiesSet()or a custom init-method. Invoked afterApplicationContextAware'ssetApplicationContext(..).NOTE: This method will only be called if there actually is a
LoadTimeWeaveravailable in the application context. If there is none, the method will simply not get invoked, assuming that the implementing object is able to activate its weaving dependency accordingly.- Specified by:
setLoadTimeWeaverin interfaceLoadTimeWeaverAware- Parameters:
loadTimeWeaver- theLoadTimeWeaverinstance (nevernull)- See Also:
InitializingBean.afterPropertiesSet(),ApplicationContextAware.setApplicationContext(org.springframework.context.ApplicationContext)
getOrder
public int getOrder()
Description copied from interface: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.
- Specified by:
getOrderin interfaceOrdered- Returns:
- the order value
- See Also:
Ordered.HIGHEST_PRECEDENCE,Ordered.LOWEST_PRECEDENCE
postProcessBeanFactory
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException
Description copied from interface: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.- Specified by:
postProcessBeanFactoryin interfaceBeanFactoryPostProcessor- Parameters:
beanFactory- the bean factory used by the application context- Throws:
BeansException- in case of errors
enableAspectJWeaving
public static void enableAspectJWeaving(LoadTimeWeaver weaverToUse, ClassLoader beanClassLoader)
Enable AspectJ weaving with the givenLoadTimeWeaver.- Parameters:
weaverToUse- the LoadTimeWeaver to apply to (ornullfor a default weaver)beanClassLoader- the class loader to create a default weaver for (if necessary)