Spring之AOP模块
AOP(Aspect Oriented Programming,面向切面编程)是Spring框架的一个重要特征。Spring推荐使用接口编程。Spring提供三种拦截器:方法前拦截器、返回后拦截器、异常抛出拦截器。拦截器定义//Service接口public interface IAopService{public void withAop() throws Exception; //将会被拦截public void withoutAop() throws...