blob: aa5a741814b25f7f1850caa263bbbd7d1ce660b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import org.aspectj.lang.annotation.*;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
public class Code5 {
public Object createBean(String name) {
return 37;
}
public static void main(String[] args) {
Code5 factory = new Code5();
System.out.println("Code5.main returned from call to createBean "+factory.createBean("s"));
}
}
@Aspect
class AfterReturningTestAspect {
@AfterReturning(pointcut = "call(Object createBean(String)) && args(beanName)", returning = "bean")
public void afterReturningCreateBean(JoinPoint joinPoint, String beanName, Object bean) throws Throwable {
System.out.println("afterReturningCreateBean advice input='" + beanName + "' ret=" + bean);
}
}
|