spring应用手册-AOP(注解)-(26)-Aspect-实例化模型

戴着假发的程序员出品 抖音ID:戴着假发的程序员 欢迎关注

Aspect-实例化模型

spring应用手册(第三部分)

我们查看@Aspect注解的源代码:

package org.aspectj.lang.annotation;

@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE})
public @interface Aspect {
    java.lang.String value() default "";
}

我们会发现Aspect注解有个属性value,这个value默认为“”。这个value就是用来配置Aspect了的实例化模型的。

简单的说就是和bean的@Scpoe注解差不多。默认情况下Aspect类都是单利的。但是我们可以通过配置@Aspect的value为perthis和pertagreg将其设置为多利。下面看看Aspect的实例化模型的三种模式:

[1] 单利,这个没什么好解释的,默认就是这个。

[2] perthis 每个切入点表达式匹配的连接点对应的AOP对象(代理对象)都会创建一个新的切面实例,使用@Aspect(“perthis(切入点表达式)”)指定切入点表达式;

[3] 每个切入点表达式匹配的连接点对应的目标对象都会创建一个新的切面实例,使用@Aspect(“pertarget(切入点表达式)”)指定切入点表达式;

我们再来看看官方的另外依据很重要的话:

“pertarget instantiation model 的工作方式与perthis完全相同,但它会在匹配的连接点为每个唯一目标 object 创建一个 aspect 实例。”

就是说你配置为perthis或者pertarget 他们的工作方式是完全相同。

笔者也测试了很多种不同的情况,发现这两个配置产生的效果基本没有啥区别。

唯一的区别就是从概念上有所不同,perthis会为每一个代理对象创建一个Aspect类对象,pertarget会为每一个目标对象创建一个Aspect对象。 但是我们本来就是一个目标对象会对应一个代理对象。所以基本没有区别。只有在多个目标对象对应一个代理对象,或者一个目标对象对应多个代理对象的情况下会产生不同。

另外还要特别注意一点:如果我们将Aspect的实例化模式配置为perthis或者pertarget这时我们必须将Aspect类的 scope配置为prototype。

我们来看一个例子:

我们准备两个接口:

/**
 * @author 戴着假发的程序员
 * 
 * @description
 */
public interface IInfo {
    public String showInfo(String info);
}
/**
 * @author 戴着假发的程序员
 * 
 * @description
 */
public interface IOtherInfo {
    public String printInfo(String info);
}

添加一个实现类,同时实现两个接口:

/**
 * @author 戴着假发的程序员
 * 
 * @description
 */
@Component
@Scope("prototype")
public class InfoService  implements IInfo,IOtherInfo{
    @Override
    public String showInfo(String info){
        System.out.println("InfoService-showInfo输出信息:"+info);
        this.printInfo(info);
        return "info方法返回值";
    }

    @Override
    public String printInfo(String info) {
        System.out.println("InfoService-printInfo打印信息:"+info);
        return null;
    }
}

我们再添加一个没有实现任何接口的类:

/**
 * @author 戴着假发的程序员
 * 
 * @description
 */
@Component
public class MessageService {
    public String showMessage(String info) {
        System.out.println("OtherInfoServcie-showMessage:"+info);
        return null;
    }
}

添加一个Aspect的配置类:

import java.util.Arrays;

/**
 * @author 戴着假发的程序员
 * 
 * @description
 */
@Component
@Aspect("pertarget(execution(* com.st.dk.demo8.service..*.*(..)))")
@Scope("prototype")//不要忘记配置scope为prototype
public class DkAspect {
    @Pointcut("execution(* com.st.dk.demo8.service..*.*(..))")
    public void pointcut1(){}

    @Before("pointcut1()")
    public void before(){
        System.out.println("--前置通知--aspect对象:"+this);
    }

测试:

ApplicationContext ac =
        new AnnotationConfigApplicationContext(AppConfig.class);
IInfo bean = ac.getBean(IInfo.class);
bean.showInfo("IInfo-接口中的方法");
IOtherInfo bean1 = ac.getBean(IOtherInfo.class);
bean1.printInfo("IOtherInfo-接口中的方法");
System.out.println(bean==bean1);
MessageService bean2 = ac.getBean(MessageService.class);
bean2.showMessage("MessageService中的方法");

结果:
在这里插入图片描述
我们会发现spring会为每一个bean都创建一个Aspect类的实例。

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

戴着假发的程序员

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值