AOP AspectJ. AspectJ, AOP, Spring .
, , Spring Java Proxies AOP. , , "" / .
, Proxies Spring, ,
public void foo() {
callbackFunction();
this.delegate.foo();
}
this.delegate "", foo(), .
...
IFooBar y = new FooBar();
IFooBar x = new FooBarProxy(y);
x.foo();
...