Spring之AOP配置文件详解

 简单来说,spring中的AOP就是实现“横切”的工具,通过AOP,让我们的设计更加的模块化,可以为那些烦琐的,反复执行的操作,定义一个统一的处理方式,更有利于团队的分工与协作。

这几天正在学习spring,下面是自己学习中的一些东西,拿出来和我一样刚开始学习的人,老鸟就略过,有什么不对的地方,还请指出,一定虚心学习。


xmlns=" http://www.springframework.org/schema/beans"
xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">







com.mooza.spring.aop.FatherInterface





transactionInterceptor
subInterface




你可能感兴趣的:(Spring系列)