我正在创建一个带有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之后):
原文链接:https://www.f2er.com/spring/432572.htmlObject target = pjp.getTarget();
if (target instanceof Abc) {
String name = ((Abc) target).getName();
// ...
}
@Around("executeMethods() && target(abc)")
public Object profile(ProceedingJoinPoint pjp,Abc abc) ....
但这只会匹配Abc类型目标的执行情况.