从aspectJ中的带注释方法获取局部变量值

时间:2013-10-24 08:26:43

标签: java methods aop aspectj local-variables

我正在使用带有aspectJ的java 自定义注释

CUSTOM ANNOTATION

@Documented
@Target(ElementType.METHOD)
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface TrxLogger {

String author() default "Shahid Ghafoor";
String comments() default "I am Fan of JAVA";
}

服务

public class Service {

private String name;

public String getName() {
    return name;
}


public void setName(String name) {
    this.name = name;
}

@TrxLogger
public String sayHello(String fn, String ln) {

    this.name=fn;

     String localVariable="Before System.out.println";

    System.out.println("Welcome!" + fn + " " + ln);

    return "The Transaction return Value";
}

}

ASPECT

@Around(value="pcSample(tl)", argNames="tl")
public Object runMethod(ProceedingJoinPoint pjp, TrxLogger tl) throws Throwable {

 return null;
}

是否可以在方面获得sayHello()方法的局部变量值(String localVariable="Before System.out.println";)?

2 个答案:

答案 0 :(得分:2)

不,本地变量就是本地变量。你无法深入研究访问它的方法。通过反射无法访问方法的主体。

答案 1 :(得分:0)

当方法sayHello执行该时间时,只有lovalVariable有值。否则任何人都不知道。