原文地址 http://michael-softtech.iteye.com/blog/650779 (1)使用ProxyFactoryBean的代理 Java代码 package chapter4; public interface Performable { public void perform() throws Exception; } package chapter4; import java.util.Random; public class Artist implements Pe…
在这里列表了我想到的在你的应用程序中加入AOP支持的所有方法.这里最主要的焦点是拦截,因为一旦有了拦截其它的事情都是细节. Approach 方法 Advantages 优点 Disadvantages 缺点 Remoting Proxies 远程代理 Easy to implement, because of the .Net framework support 容易实现,因为有.NET框架的支持. Somewhat heavyweightCan only be used on interfa…