java – 在方面类中访问类变量

前端之家收集整理的这篇文章主要介绍了java – 在方面类中访问类变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在创建一个带有spring aspectj的方面类,如下所示

@Aspect
public class AspectDemo {
  @Pointcut("execution(* abc.execute(..))")
     public void executeMethods() { }

 @Around("executeMethods()")
    public Object profile(ProceedingJoinPoint pjp) throws Throwable {
            System.out.println("Going to call the method.");
            Object output = pjp.proceed();
            System.out.println("Method execution completed.");
            return output;
    }

} 

现在我想访问类abc的属性名称然后如何在方面类中访问它?
我想在profile方法显示abc类的name属性

我的abc课程如下

public class abc{
String name;

public void setName(String n){
name=n;
}
public String getName(){
 return name;
}

public void execute(){
System.out.println("i am executing");
}
}

如何访问方面类中的名称

最佳答案
您需要获取对目标对象的引用并将其强制转换为您的类(在执行checkof之后):

Object target = pjp.getTarget();
if (target instanceof Abc) {
    String name = ((Abc) target).getName();
    // ...
}

建议的方法(性能和类型安全)是指切入点中提到的目标:

@Around("executeMethods() && target(abc)")
public Object profile(ProceedingJoinPoint pjp,Abc abc) ....

但这只会匹配Abc类型目标的执行情况.

原文链接:https://www.f2er.com/spring/432572.html

猜你在找的Spring相关文章