Spring08 AOP

一、靜態代理 角色分析:java 抽象角色:通常會使用接口或抽象類來解決 public interface Rent { void rent(); } 真實角色:被代理的角色 public class Host implements Rent{ public void rent() { System.out.println("房東有房子出租"); } } 代
相關文章
相關標籤/搜索