请尝试使用AspectJ将变量 time 添加到exestant类 Connection ,它可以工作,但是当我尝试在建议中使用它之前我有此错误:无法解析为变量 这是我的代码:
@Named
答案 0 :(得分:0)
问题已解决;)
pointcut completePc() : execution(* telecom.v2.connect.Connection.complete()) ;
after(Connection connection):completePc() && this(connection) {
connection.timer.start();
}