02spring4_hello的jar包.rar spring-aop-4.1.6.RELEASE.jar spring-aspects-4.1.6.RELEASE.jar spring-beans-4.1.6.RELEASE.jar spring-context-4.1.6.RELEASE.jar spring-context-support-4
01spring4_ioc1.rar 就是上面贴的代码。。。。嫌麻烦的就下载咯。。。package cn.sxt.dao; public interface UserDao{ public void getUser(); }
07spring4_staticproxy.rar 静态代理的角色分析: 抽象角色——一般使用接口或者抽象类来实现。 真实角色——被代理的角色 代理角色——代理真实角色—代理真实角色后一般会做一些附属操作。 客户——使用代理角色来进行一些操作 Client.java(客户)
10spring4_aop2.rar aop再解释aop的重要性Spring aop就是讲公共的业务(如日志,安全等)和领域业务结合。当执行领域业务时将会把公共业务加进来。实现公共业务的重复利用。领域业务更纯粹。程序员更专注于领域业务。其本质还是动态代理。第二种方式实现aop:自定义类来实现