关于Spring AOP的几个重要概念:java
1.链接点(Joinpoint)node
众所周知,AOP是做用在方法级别上的,因此说对于链接点,简单点理解,就是应用程序中类的方法(普通方法和构造方法)。目的是用于方法的执行。spring
2.切点(Pointcut)express
对于切点也就是须要拦截的方法,也就是在哪里执行。它是一段表达式,一般包含四种:方法切点函数(
execution()
、@annotation()
)、方法入参切点函数(args()
、@args()
)、目标类切点函数(within()
、target()
、@within()
、@target()
)、代理类切点函数(this()
)。app3.通知(Advice)ide
通知表示了执行的顺序以及具体的执行逻辑,也就是在何时执行以及作什么。通知目前有五种:前置通知、后置通知、环绕通知、后置返回通知、后置异常通知。函数
4.切面(Advisor)源码分析
切面是由切点和通知组成。ui
5.织入(weaving)this
织入就是为切面和目标类生成一个代理类。
对于非或标签,Spring都是由对应的NameSpaceHandler
进行处理的,AOP也不例外,使用的是AopNameSpaceHandler
。
public class AopNamespaceHandler extends NamespaceHandlerSupport {
@Override
public void init() {
registerBeanDefinitionParser("config", new ConfigBeanDefinitionParser());
registerBeanDefinitionParser("aspectj-autoproxy", new AspectJAutoProxyBeanDefinitionParser());
registerBeanDefinitionDecorator("scoped-proxy", new ScopedProxyBeanDefinitionDecorator());
}
}
复制代码
具体AopNameSpaceHandler
是由Spring在解析XML文件的时候调用(org.springframework.beans.factory.xml.BeanDefinitionParserDelegate#parseCustomElement
),来分别解析三个对应的顶层标签。对于这种Parse
类,主要关注其中的parse
方法便可,解析标签的入口就是这里。
applicationContext.xml
:
<bean id="helloImpl" class="com.ly.aop.HelloImpl"/>
<!--必须配置,由于被代理的对象必须是在容器中-->
<bean id="xmlAop" class="com.ly.aop.XmlAop"/>
<aop:config>
<aop:pointcut id="txPointcut" expression="execution(* com.ly.aop.HelloImpl.hello(..))"/>
<!--该标签一般和Advice的子接口配合使用,例如配合事务<tx:advice/>-->
<aop:advisor advice-ref="transactionInterceptor" pointcut-ref="txPointcut"/>
<aop:aspect ref="xmlAop">
<aop:pointcut id="pointcut" expression="execution(* com.ly.aop.HelloImpl.hello(..))"/>
<aop:before method="before" pointcut-ref="pointcut"/>
<aop:after method="after" pointcut-ref="pointcut"/>
<aop:around method="around" pointcut-ref="pointcut"/>
<aop:after-returning method="afterReturn" pointcut-ref="pointcut" returning="res"/>
<aop:after-throwing method="afterThrowing" pointcut-ref="pointcut" throwing="exception"/>
</aop:aspect>
</aop:config>
<tx:advice id="transactionInterceptor" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="get*" read-only="false" propagation="REQUIRED" isolation="DEFAULT"/>
</tx:attributes>
</tx:advice>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"/>
复制代码
aop:config
@Override
public BeanDefinition parse(Element element, ParserContext parserContext) {
//1.<aop:config/>配置class为AspectJAwareAdvisorAutoProxyCreator的BeanDefinition
//而后设置两个属性:proxy-target-class和expose-class
//proxy-target-class表明是否使用CGLIB代理,默认false,使用JDK
//expose-class表示是否暴露代理类,能够经过AopContext获取当前代理类
configureAutoProxyCreator(parserContext, element);
//2.解析<aop:config/>的子标签
List<Element> childElts = DomUtils.getChildElements(element);
for (Element elt: childElts) {
String localName = parserContext.getDelegate().getLocalName(elt);
//3.BeanDefinition的class是AspectjExpressionPointcut,保存id和expression,
// 若是id为空,则自动生成,而且是prototype
if (POINTCUT.equals(localName)) {
parsePointcut(elt, parserContext);
}
//4.BeanDefinition的class是DefaultBeanFactoryPointcutAdvisor,
// 若是是pointcut,则是AspectJExpressPointcut,
// 若是是pointcut-ref,则是RuntimeBeanNameReference
// 事务管理的时候用过
else if (ADVISOR.equals(localName)) {
parseAdvisor(elt, parserContext);
}
//5.会被组装为AspectJPointcutAdvisor为class的BeanDefinition,
// 这个BeanDefinition还存储了建立Method的工厂Bean
// 和建立Aspect Instance的BeanFactory
// 以及AspectJExpressionPointcut或RuntimeBeanNameReference
//而<aop:aspect/>会被转为AspectComponentBeanDefinition
//<aop:declare-parents/>会被转为DeclareParentsAdvisor
else if (ASPECT.equals(localName)) {
parseAspect(elt, parserContext);
}
}
}
复制代码
上述源码只贴了关键代码,主要分为2步:1.解析<aop:config/>
标签;2.解析<aop:config/>
的三个子标签。
<aop:config/>
标签public static void registerAspectJAutoProxyCreatorIfNecessary( ParserContext parserContext, Element sourceElement) {
//1.注入BeanDefinition,class为AspectJAwareAdvisorAutoProxyCreator
BeanDefinition beanDefinition = AopConfigUtils.registerAspectJAutoProxyCreatorIfNecessary(
parserContext.getRegistry(), parserContext.extractSource(sourceElement));
//2.设置proxy-target-class和expose-class属性
useClassProxyingIfNecessary(parserContext.getRegistry(), sourceElement);
registerComponentIfNecessary(beanDefinition, parserContext);
}
复制代码
public static BeanDefinition registerAspectJAutoProxyCreatorIfNecessary(BeanDefinitionRegistry registry, Object source) {
return registerOrEscalateApcAsRequired(AspectJAwareAdvisorAutoProxyCreator.class, registry, source);
}
复制代码
建立class
为AspectJAwareAutoProxyCreator
的 BeanDefinition
相对简单,就是新建了一个BeanDefinition
对象,而后设置了一些基础属性就完成了。
private static void useClassProxyingIfNecessary(BeanDefinitionRegistry registry, Element sourceElement) {
if (sourceElement != null) {
boolean proxyTargetClass = Boolean.parseBoolean(sourceElement.getAttribute(PROXY_TARGET_CLASS_ATTRIBUTE));
if (proxyTargetClass) {
AopConfigUtils.forceAutoProxyCreatorToUseClassProxying(registry);
}
boolean exposeProxy = Boolean.parseBoolean(sourceElement.getAttribute(EXPOSE_PROXY_ATTRIBUTE));
if (exposeProxy) {
AopConfigUtils.forceAutoProxyCreatorToExposeProxy(registry);
}
}
}
复制代码
proxy-target-class
和expose-proxy
这两个属性仍是很重要的,proxy-target-class
表明的使用何种方式来代理目标类,若是proxy-target-class
为true,则使用CGLIB
动态代理;若是为false,则使用JDK
动态代理,默认状况为false。expose-proxy
表明是否须要暴露当前的代理对象,默认不暴露,若是暴露,可使用AopContext
获取当前代理对象,能够用来解决在一个类中一个方法调用另外一个方法,切面无效的问题。
<aop:pointcut/>
标签private AbstractBeanDefinition parsePointcut(Element pointcutElement, ParserContext parserContext) {
String id = pointcutElement.getAttribute(ID);
String expression = pointcutElement.getAttribute(EXPRESSION);
AbstractBeanDefinition pointcutDefinition = null;
//1.建立AspectJExpressionPointcut
pointcutDefinition = createPointcutDefinition(expression);
pointcutDefinition.setSource(parserContext.extractSource(pointcutElement));
//2.若是名称未设置,则自动生成
String pointcutBeanName = id;
if (StringUtils.hasText(pointcutBeanName)) {
parserContext.getRegistry().registerBeanDefinition(pointcutBeanName, pointcutDefinition);
}
else {
pointcutBeanName = parserContext.getReaderContext().registerWithGeneratedName(pointcutDefinition);
}
}
复制代码
上述代码只贴了关键性代码。
protected AbstractBeanDefinition createPointcutDefinition(String expression) {
RootBeanDefinition beanDefinition = new RootBeanDefinition(AspectJExpressionPointcut.class);
beanDefinition.setScope(BeanDefinition.SCOPE_PROTOTYPE);
beanDefinition.setSynthetic(true);
beanDefinition.getPropertyValues().add(EXPRESSION, expression);
return beanDefinition;
}
复制代码
由上述代码能够看出来,对于<aop:pointcut/>
标签是使用AspectJExpressionPointcut
。
注意:它的Scope
是Prototype
,这也就意味着若是有其余的类引用了Pointcut
,则每次都一个新的对象,至于表达式是做为属性值保存。
public interface Pointcut {
/** * 返回一个类型过滤器 */
ClassFilter getClassFilter();
/** * 返回一个方法匹配器 */
MethodMatcher getMethodMatcher();
}
复制代码
Pointcut
接口提供了两个核心方法,这两个核心方法分别返回两个重要的类:ClassFilter
和MethodMatcher
。ClassFilter
用于根据expression
过滤Class
,MethodMatcher
用于根据expression
过滤method
。
<aop:advisor/>
标签private void parseAdvisor(Element advisorElement, ParserContext parserContext) {
//1.建立BeanDefinition,class是DefaultBeanFactoryPointcutAdvisor
//若是pointcut-ref存在, 则建立RuntimeBeanNameReference
AbstractBeanDefinition advisorDef = createAdvisorBeanDefinition(advisorElement, parserContext);
String id = advisorElement.getAttribute(ID);
try {
this.parseState.push(new AdvisorEntry(id));
//2.设置名称,若是名称不存在,就自动生成
String advisorBeanName = id;
if (StringUtils.hasText(advisorBeanName)) {
parserContext.getRegistry().registerBeanDefinition(advisorBeanName, advisorDef);
}
else {
advisorBeanName = parserContext.getReaderContext().registerWithGeneratedName(advisorDef);
}
//3.若是是pointcut,则生成class为AspectJExpressionPointcut
//若是是pointcut-ref,则为RuntimeBeanReference
Object pointcut = parsePointcutProperty(advisorElement, parserContext);
if (pointcut instanceof BeanDefinition) {
advisorDef.getPropertyValues().add(POINTCUT, pointcut);
parserContext.registerComponent(
new AdvisorComponentDefinition(advisorBeanName, advisorDef, (BeanDefinition) pointcut));
}
else if (pointcut instanceof String) {
advisorDef.getPropertyValues().add(POINTCUT, new RuntimeBeanReference((String) pointcut));
parserContext.registerComponent(
new AdvisorComponentDefinition(advisorBeanName, advisorDef));
}
}
finally {
this.parseState.pop();
}
}
复制代码
private AbstractBeanDefinition createAdvisorBeanDefinition(Element advisorElement, ParserContext parserContext) {
RootBeanDefinition advisorDefinition = new RootBeanDefinition(DefaultBeanFactoryPointcutAdvisor.class);
advisorDefinition.setSource(parserContext.extractSource(advisorElement));
//1.通知
String adviceRef = advisorElement.getAttribute(ADVICE_REF);
if (!StringUtils.hasText(adviceRef)) {
parserContext.getReaderContext().error(
"'advice-ref' attribute contains empty value.", advisorElement, this.parseState.snapshot());
}
else {
advisorDefinition.getPropertyValues().add(
ADVICE_BEAN_NAME, new RuntimeBeanNameReference(adviceRef));
}
//2.排序
if (advisorElement.hasAttribute(ORDER_PROPERTY)) {
advisorDefinition.getPropertyValues().add(
ORDER_PROPERTY, advisorElement.getAttribute(ORDER_PROPERTY));
}
return advisorDefinition;
}
复制代码
从上述源码能够看到,对于<aop:advisor/>
标签使用的的DefaultBeanFactoryPointcutAdvisor
,而且设置了通知和排序。对于名称的设置也是同样的,有就用,没有就自动生成。
private Object parsePointcutProperty(Element element, ParserContext parserContext) {
//1.针对pointcut属性,使用AspectJExpressionPointcut直接建立,这里的建立方式和以前的同样
if (element.hasAttribute(POINTCUT)) {
// Create a pointcut for the anonymous pc and register it.
String expression = element.getAttribute(POINTCUT);
AbstractBeanDefinition pointcutDefinition = createPointcutDefinition(expression);
pointcutDefinition.setSource(parserContext.extractSource(element));
return pointcutDefinition;
}
//2.对于pointcut-ref属性,直接返回表达式,而后使用RuntimeBeanReference进行引用
else if (element.hasAttribute(POINTCUT_REF)) {
String pointcutRef = element.getAttribute(POINTCUT_REF);
if (!StringUtils.hasText(pointcutRef)) {
parserContext.getReaderContext().error(
"'pointcut-ref' attribute contains empty value.", element, this.parseState.snapshot());
return null;
}
return pointcutRef;
}
}
复制代码
上述源码只展现了关键的源码,能够看到,主要是根据pointcut
的形式来决定生成不一样的类,若是是pointcut
属性,则直接建立AspectJExpressionPointcut
为class的BeanDefinition
,若是是使用pointcut-ref
进行引用,则根据切点表达式建立RuntimeBeanReference
,最终都是做为DeafultBeanFactoryPointcutAdvisor
为class的BeanDefinition
的属性值,以便后续使用。
通常这种方式不多用,在事务管理的是有用过。
<aop:aspect/>
标签private void parseAspect(Element aspectElement, ParserContext parserContext) {
//1.<aop:declare-parents/>会被转为DeclareParentsAdvisor
List<Element> declareParents = DomUtils.getChildElementsByTagName(aspectElement, DECLARE_PARENTS);
for (int i = METHOD_INDEX; i < declareParents.size(); i++) {
Element declareParentsElement = declareParents.get(i);
beanDefinitions.add(parseDeclareParents(declareParentsElement, parserContext));
}
//2.处理<aop:aspect/>的子标签,before、after、around、after-returning、after-throwing
NodeList nodeList = aspectElement.getChildNodes();
boolean adviceFoundAlready = false;
for (int i = 0; i < nodeList.getLength(); i++) {
Node node = nodeList.item(i);
if (isAdviceNode(node, parserContext)) {
if (!adviceFoundAlready) {
adviceFoundAlready = true;
if (!StringUtils.hasText(aspectName)) {
parserContext.getReaderContext().error(
"<aspect> tag needs aspect bean reference via 'ref' attribute when declaring advices.",
aspectElement, this.parseState.snapshot());
return;
}
beanReferences.add(new RuntimeBeanReference(aspectName));
}
AbstractBeanDefinition advisorDefinition = parseAdvice(
aspectName, i, aspectElement, (Element) node, parserContext, beanDefinitions, beanReferences);
beanDefinitions.add(advisorDefinition);
}
}
//3.<aop:aspect/>自己转为AspectComponentDefinition
AspectComponentDefinition aspectComponentDefinition = createAspectComponentDefinition(
aspectElement, aspectId, beanDefinitions, beanReferences, parserContext);
parserContext.pushContainingComponent(aspectComponentDefinition);
//4.继续处理<aop:pointcut/>
// 若是上面的Advice使用的是pointcut,则上面引用了,这里建立便可。
// 若是上面的Advice使用的pointcut,则自己已经建立了
List<Element> pointcuts = DomUtils.getChildElementsByTagName(aspectElement, POINTCUT);
for (Element pointcutElement : pointcuts) {
parsePointcut(pointcutElement, parserContext);
}
}
复制代码
上述源码只展现了关键的部分。这个方法总体流程也很好理解,就是解析<aop:aspect/>
标签内的子标签。
<aop:declare-parents/>
<aop:declare-parents/>
标签表示代理子类应该实现哪些接口,最终会被转为class
为DeclareParentsAdivsor
的BeanDefinition
。基本不怎么使用。
Advice
private AbstractBeanDefinition parseAdvice( String aspectName, int order, Element aspectElement, Element adviceElement, ParserContext parserContext, List<BeanDefinition> beanDefinitions, List<BeanReference> beanReferences) {
this.parseState.push(new AdviceEntry(parserContext.getDelegate().getLocalName(adviceElement)));
//1.工厂Bean,用于根据aspectName和Advice的method获取Method对象
RootBeanDefinition methodDefinition = new RootBeanDefinition(MethodLocatingFactoryBean.class);
methodDefinition.getPropertyValues().add("targetBeanName", aspectName);
methodDefinition.getPropertyValues().add("methodName", adviceElement.getAttribute("method"));
methodDefinition.setSynthetic(true);
//2.Bean工厂,用于根据aspectName从beanFactory中获取Aspect Bean
RootBeanDefinition aspectFactoryDef =
new RootBeanDefinition(SimpleBeanFactoryAwareAspectInstanceFactory.class);
aspectFactoryDef.getPropertyValues().add("aspectBeanName", aspectName);
aspectFactoryDef.setSynthetic(true);
//3.获取Advice而且注册AspectJExpressionPointcut的BeanDefinition
AbstractBeanDefinition adviceDef = createAdviceDefinition(
adviceElement, parserContext, aspectName, order, methodDefinition, aspectFactoryDef,
beanDefinitions, beanReferences);
//4.最终生成的仍是AspectJPointcutAdvisor
RootBeanDefinition advisorDefinition = new RootBeanDefinition(AspectJPointcutAdvisor.class);
advisorDefinition.setSource(parserContext.extractSource(adviceElement));
advisorDefinition.getConstructorArgumentValues().addGenericArgumentValue(adviceDef);
if (aspectElement.hasAttribute(ORDER_PROPERTY)) {
advisorDefinition.getPropertyValues().add(
ORDER_PROPERTY, aspectElement.getAttribute(ORDER_PROPERTY));
}
parserContext.getReaderContext().registerWithGeneratedName(advisorDefinition);
return advisorDefinition;
}
复制代码
要看这个方法,首先先看下类图:
能够看到这五种通知都是AbstractAspectJAdvice
子类,并且它们的构造方法都调用了父类的构造方法。
这个构造方法包含了三个重要的参数:通知方法(Method
)、切点(AspectJExpressionPointcut
)、切面实例工厂(AspectJInstanceFactory
),看到这三个参数就能够很明白的知道后续通知方法的执行、切面实例工厂的获取、切点的类匹配和方法匹配必定都是经过该类实现的。
上述parseAdvice
方法其实就是这个参数的建立的过程。
Advice Method
首先建立class
为MethodLocationFactoryBean
的BeanDefinition
,这是一个工厂Bean
,就是用来生产通知Method
实例的。
public class MethodLocatingFactoryBean implements FactoryBean<Method>, BeanFactoryAware {
private String targetBeanName;
private String methodName;
private Method method;
@Override
public void setBeanFactory(BeanFactory beanFactory) {
Class<?> beanClass = beanFactory.getType(this.targetBeanName);
this.method = BeanUtils.resolveSignature(this.methodName, beanClass);
}
@Override
public Method getObject() throws Exception {
return this.method;
}
}
复制代码
上述源码只展现了关键部分,能够看到是经过IOC容器根据targetBeanName
获取目标Bean
的Class
,而后根据methodName
经过Class
获取Method
实例。
注意:这里的targetBeanName
其实就是<aop:aspect ref="aspectName"/>
中的ref
的值,而methodName
就是<aop:before method="before"/>
中的method
的值。
Aspect Instance
其次建立class
为SimpleBeanFactoryAwareAspectJInstanceFactory
,这是一个实例工厂,就是用来生产Aspect
实例的。
public interface AspectInstanceFactory extends Ordered {
Object getAspectInstance();
ClassLoader getAspectClassLoader();
}
复制代码
这个接口是专门用来获取AspectInstance
的工厂。
public class SimpleBeanFactoryAwareAspectInstanceFactory implements AspectInstanceFactory, BeanFactoryAware {
private String aspectBeanName;
private BeanFactory beanFactory;
@Override
public void setBeanFactory(BeanFactory beanFactory) {
this.beanFactory = beanFactory;
Assert.notNull(this.aspectBeanName, "'aspectBeanName' is required");
}
@Override
public Object getAspectInstance() {
return this.beanFactory.getBean(this.aspectBeanName);
}
@Override
public ClassLoader getAspectClassLoader() {
if (this.beanFactory instanceof ConfigurableBeanFactory) {
return ((ConfigurableBeanFactory) this.beanFactory).getBeanClassLoader();
}
else {
return ClassUtils.getDefaultClassLoader();
}
}
}
复制代码
上述源码只展现了关键部分。能够看到是根据aspectBeanName
从IOC容器中获取Bean
实例的。
注意:asepctBeanName
其实就是<aop:aspect id="aspectBeanName"/>
中的id
的值。
AspectJPointcutAdvisor
而后就是根据通知类型获取通知类以及切点的设置。
private AbstractBeanDefinition createAdviceDefinition( Element adviceElement, ParserContext parserContext, String aspectName, int order, RootBeanDefinition methodDef, RootBeanDefinition aspectFactoryDef, List<BeanDefinition> beanDefinitions, List<BeanReference> beanReferences) {
//1.class为AspectJXXX的BeanDefinition
RootBeanDefinition adviceDefinition = new RootBeanDefinition(getAdviceClass(adviceElement, parserContext));
adviceDefinition.setSource(parserContext.extractSource(adviceElement));
//2.相关属性设置
adviceDefinition.getPropertyValues().add(ASPECT_NAME_PROPERTY, aspectName);
adviceDefinition.getPropertyValues().add(DECLARATION_ORDER_PROPERTY, order);
if (adviceElement.hasAttribute(RETURNING)) {
adviceDefinition.getPropertyValues().add(
RETURNING_PROPERTY, adviceElement.getAttribute(RETURNING));
}
if (adviceElement.hasAttribute(THROWING)) {
adviceDefinition.getPropertyValues().add(
THROWING_PROPERTY, adviceElement.getAttribute(THROWING));
}
if (adviceElement.hasAttribute(ARG_NAMES)) {
adviceDefinition.getPropertyValues().add(
ARG_NAMES_PROPERTY, adviceElement.getAttribute(ARG_NAMES));
}
//3.构造参数值设置
ConstructorArgumentValues cav = adviceDefinition.getConstructorArgumentValues();
//4.生成Method对象的Bean工厂
cav.addIndexedArgumentValue(METHOD_INDEX, methodDef);
//5.注册AspectJExpressionPointcut或RuntimeBeanReference为class的BeanDefinition
Object pointcut = parsePointcutProperty(adviceElement, parserContext);
if (pointcut instanceof BeanDefinition) {
cav.addIndexedArgumentValue(POINTCUT_INDEX, pointcut);
beanDefinitions.add((BeanDefinition) pointcut);
}
else if (pointcut instanceof String) {
RuntimeBeanReference pointcutRef = new RuntimeBeanReference((String) pointcut);
cav.addIndexedArgumentValue(POINTCUT_INDEX, pointcutRef);
beanReferences.add(pointcutRef);
}
//6.生成Aspect Instance的BeanFactory
cav.addIndexedArgumentValue(ASPECT_INSTANCE_FACTORY_INDEX, aspectFactoryDef);
return adviceDefinition;
}
复制代码
这个方法代码看着多,其实就是三步核心:1.获取Advice
;2.设置Advice
的属性;3.设置以前的三个构造参数。
Advice
private Class<?> getAdviceClass(Element adviceElement, ParserContext parserContext) {
String elementName = parserContext.getDelegate().getLocalName(adviceElement);
if (BEFORE.equals(elementName)) {
return AspectJMethodBeforeAdvice.class;
}
else if (AFTER.equals(elementName)) {
return AspectJAfterAdvice.class;
}
else if (AFTER_RETURNING_ELEMENT.equals(elementName)) {
return AspectJAfterReturningAdvice.class;
}
else if (AFTER_THROWING_ELEMENT.equals(elementName)) {
return AspectJAfterThrowingAdvice.class;
}
else if (AROUND.equals(elementName)) {
return AspectJAroundAdvice.class;
}
else {
throw new IllegalArgumentException("Unknown advice kind [" + elementName + "].");
}
}
复制代码
获取Advice
很简单,就是根据标签判断是哪一种通知,返回相应通知的Class
。
Advice
属性设置Advice
的属性就更加简单了,主要是AspecJAfterReturningAdivce
和AspectJAfterThrowingAdvice
以及通知方法参数。
设置以前的三个构造参数
,Method
和Aspect Instance
已经拿到了,如今主要的是建立Pointcut
。对于Pointcut
会有两种状况:1.pointcut;2.pointcut-ref。
从上面的代码中能够看到,若是<aop:before pointcut="xxx"/>
,则会直接生成Class
为AspectJExpressionPointcut
的BeanDefinition
;而对于<aop:before ref="xxx"/>
,则会生成RuntimeBeanReference
对Pointcut
进行引用,在运行的时候,会自动拿到。这一点和以前的<aop:advisor/>
是同样的。
三个参数齐全,就能够直接设置构造参数了,最后返回对应AspectJXXXAdvice
为Class
的BeanDefinition
。
最后回到parseAdvice
方法,将拿到的BeanDefinition
做为Class
为AspectJPointcutAdvisor
的BeanDefintion
的构造参数值。
那么至此Advisor
也就拿到了。
<aop:aspect/>
private AspectComponentDefinition createAspectComponentDefinition( Element aspectElement, String aspectId, List<BeanDefinition> beanDefs, List<BeanReference> beanRefs, ParserContext parserContext) {
//1.全部的AspectJPointcutAdvisor,每一个Advice都会生成一个
BeanDefinition[] beanDefArray = beanDefs.toArray(new BeanDefinition[beanDefs.size()]);
//2.全部的ref
BeanReference[] beanRefArray = beanRefs.toArray(new BeanReference[beanRefs.size()]);
Object source = parserContext.extractSource(aspectElement);
return new AspectComponentDefinition(aspectId, beanDefArray, beanRefArray, source);
}
复制代码
被转为Class
为AspectConpenentDefintion
,保存了全部的AspectJPointcutAdvisor
和ref
。
<aop:pointcut/>
<aop:aspect/>
中的<aop:pointcut/>
和<aop:config/>
中的<aop:pointcut/>
解析方式是同样的,生成Class
为AspectJExpressionPointcut
的BeanDefintion
。
注意:
AspectJExpressionPointcut
是Prototype
,若是有Advice
引用这个Pointcut
,那么有几个Advice
,就会产生几个Pointcut
,也就会有几个AspectJPointcutAdvisor
存储Advice
和Pointcut
。
aop:scoped-proxy
class ScopedProxyBeanDefinitionDecorator implements BeanDefinitionDecorator {
private static final String PROXY_TARGET_CLASS = "proxy-target-class";
//装饰者
@Override
public BeanDefinitionHolder decorate(Node node, BeanDefinitionHolder definition, ParserContext parserContext) {
//1.代理方式
boolean proxyTargetClass = true;
if (node instanceof Element) {
Element ele = (Element) node;
if (ele.hasAttribute(PROXY_TARGET_CLASS)) {
proxyTargetClass = Boolean.valueOf(ele.getAttribute(PROXY_TARGET_CLASS));
}
}
//2.建立代理对象,代理对象的名称和原对象一致,原对象的名称发生改变
// Register the original bean definition as it will be referenced by the scoped proxy
// and is relevant for tooling (validation, navigation).
BeanDefinitionHolder holder =
ScopedProxyUtils.createScopedProxy(definition, parserContext.getRegistry(), proxyTargetClass);
String targetBeanName = ScopedProxyUtils.getTargetBeanName(definition.getBeanName());
parserContext.getReaderContext().fireComponentRegistered(
new BeanComponentDefinition(definition.getBeanDefinition(), targetBeanName));
return holder;
}
}
复制代码
这是一个装饰者模式,目的是根据不一样的代理方式为原有的BeanDefinition
生成代理的BeanDefinition
。那么当使用beanName
获取获取bean
的时候,本质上拿到的是代理bean
。
public static BeanDefinitionHolder createScopedProxy(BeanDefinitionHolder definition, BeanDefinitionRegistry registry, boolean proxyTargetClass) {
//1.原始BeanDefinition信息
String originalBeanName = definition.getBeanName();
BeanDefinition targetDefinition = definition.getBeanDefinition();
//2.重写beanName,变为scopedTarget.元名称
String targetBeanName = getTargetBeanName(originalBeanName);
//3.建立代理BeanDefinition,本质上是一个class为工厂Bean,能够生成代理对象,并设置相关属性
RootBeanDefinition proxyDefinition = new RootBeanDefinition(ScopedProxyFactoryBean.class);
proxyDefinition.setDecoratedDefinition(new BeanDefinitionHolder(targetDefinition, targetBeanName));
proxyDefinition.setOriginatingBeanDefinition(targetDefinition);
proxyDefinition.setSource(definition.getSource());
proxyDefinition.setRole(targetDefinition.getRole());
proxyDefinition.getPropertyValues().add("targetBeanName", targetBeanName);
if (proxyTargetClass) {
targetDefinition.setAttribute(AutoProxyUtils.PRESERVE_TARGET_CLASS_ATTRIBUTE, Boolean.TRUE);
// ScopedProxyFactoryBean's "proxyTargetClass" default is TRUE, so we don't need to set it explicitly here.
}
else {
proxyDefinition.getPropertyValues().add("proxyTargetClass", Boolean.FALSE);
}
proxyDefinition.setAutowireCandidate(targetDefinition.isAutowireCandidate());
proxyDefinition.setPrimary(targetDefinition.isPrimary());
if (targetDefinition instanceof AbstractBeanDefinition) {
proxyDefinition.copyQualifiersFrom((AbstractBeanDefinition) targetDefinition);
}
targetDefinition.setAutowireCandidate(false);
targetDefinition.setPrimary(false);
//4.注入原始BeanDefinition,可是名称是重写以后的beanName,而代理BeanDefinition使用原始的beanName
// 这样咱们拿到的Bean虽然名称是咱们注入的那个,可是本质上已经成为了代理Bean
registry.registerBeanDefinition(targetBeanName, targetDefinition);
//5.返回代理BeanDefinition并注入IOC容器
return new BeanDefinitionHolder(proxyDefinition, originalBeanName, definition.getAliases());
}
复制代码
这个方法很好理解,就是为原有的BeanDefinition
生成了一个代理的BeanDefinition
,原有的BeanDefintion
和代理BeanDefinition
都会注入IOC容器,当从容器中获取相应的Bean
时候,获取到的是代理的Bean
。固然代理的方式根据proxy-target-class
属性进行设置的,默认为false,是``JDK代理,为true,是
cglib`代理。
这个标签的使用场景,好比一个Scope
做用的Bean A
引用一个Prototype
做用的Bean B
,那么会致使A
引用的B
永远是同一个对象,而不是每次请求都是新的B
实例。
<bean class="com.ly.scope.A">
<property name="b" ref="b"/>
</bean>
<bean id="b" class="com.ly.scope.B" scope="prototype">
<aop:scoped-proxy/>
</bean>
复制代码
aop:aspect-autoproxy
@Override
public BeanDefinition parse(Element element, ParserContext parserContext) {
//1.生成class为AnnotationAwareAspectJAutoProxyCreator的BeanDefinition
AopNamespaceUtils.registerAspectJAnnotationAutoProxyCreatorIfNecessary(parserContext, element);
//2.<aop:include name="expression"/>是用来处理指示被@Aspect注解的Bean,也就是切面,并做为BeanDefinition的属性
extendBeanDefinition(element, parserContext);
return null;
}
复制代码
<aop:aspect-autoproxy/>
标签的做用是扫描被@Aspect
注解的Bean
。
public static void registerAspectJAnnotationAutoProxyCreatorIfNecessary( ParserContext parserContext, Element sourceElement) {
//1.注入BeanDefinition,class为AnnotationAwareAspectJAutoProxyCreator
BeanDefinition beanDefinition = AopConfigUtils.registerAspectJAnnotationAutoProxyCreatorIfNecessary(
parserContext.getRegistry(), parserContext.extractSource(sourceElement));
//2.proxy-target-class、expose-proxy
useClassProxyingIfNecessary(parserContext.getRegistry(), sourceElement);
registerComponentIfNecessary(beanDefinition, parserContext);
}
public static BeanDefinition registerAspectJAnnotationAutoProxyCreatorIfNecessary(BeanDefinitionRegistry registry, Object source) {
return registerOrEscalateApcAsRequired(AnnotationAwareAspectJAutoProxyCreator.class, registry, source);
}
private static BeanDefinition registerOrEscalateApcAsRequired(Class<?> cls, BeanDefinitionRegistry registry, Object source) {
Assert.notNull(registry, "BeanDefinitionRegistry must not be null");
//1.beanDefinition已经存在,则根据权重设置beanClassName
if (registry.containsBeanDefinition(AUTO_PROXY_CREATOR_BEAN_NAME)) {
BeanDefinition apcDefinition = registry.getBeanDefinition(AUTO_PROXY_CREATOR_BEAN_NAME);
if (!cls.getName().equals(apcDefinition.getBeanClassName())) {
int currentPriority = findPriorityForClass(apcDefinition.getBeanClassName());
int requiredPriority = findPriorityForClass(cls);
if (currentPriority < requiredPriority) {
apcDefinition.setBeanClassName(cls.getName());
}
}
return null;
}
//2.新建,并设置相关属性
RootBeanDefinition beanDefinition = new RootBeanDefinition(cls);
beanDefinition.setSource(source);
beanDefinition.getPropertyValues().add("order", Ordered.HIGHEST_PRECEDENCE);
beanDefinition.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
registry.registerBeanDefinition(AUTO_PROXY_CREATOR_BEAN_NAME, beanDefinition);
return beanDefinition;
}
复制代码
能够看到是注册了一个class
为AnnotationAwareAspectJAutoProxyCreator
的BeanDefnition
,这个BeanDefintion
在调用AOP,获取全部候选AOP的时候会用到,用于扫描全部@AspectJ
注解的Bean
。
<aop:aspectj-autoproxy/>
也支持两个属性:proxy-target-class
和expose-proxy
。proxy-target-class
表示代理方式,expose-proxy
表示暴露代理对象,可使用AopContext#currentProxy
获取代理对象。
能够看到AnnotationAwareAspectJAutoProxyCreator
是AspectJAwareAdvisorAutoProxyCreator
的子类,AspectJAwareAdvisorAutoProxyCreator
是解析<aop:config/>
的时候使用的。