摘要: 一、AOP基础 1.基本需求 需求: 日志功能,在程序执行期间记录发生的活动。 ArithmeticCalculate.java public interface ArithmeticCalculate{ public int add(int a,int b); public int sub(int a,int b); public int mul(int ... 阅读全文
posted @ 2016-06-03 21:34 ✈✈✈ 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 一、Bean的生命周期 1.概述 Spring IOC容器可以管理Bean的生命周期,Spring 允许在Bean的生命周期的特定点执行定制的任务。 Spring IOC容器对Bean的生命周期进行管理的过程: (1)通过构造器或工厂方法创建Bean实例。 (2)为Bean的属性设置值和对其他Bean的引用。 (3)调用Be... 阅读全文
posted @ 2016-06-03 13:55 ✈✈✈ 阅读(523) 评论(1) 推荐(0) 编辑