AOP简介
AOP的全称是Aspect Oriented Programming,即面向切面编程。是实现功能统一维护的一种技术,它将业务逻辑的各个部分进行隔离,使开发人员在编写业务逻辑时可以专心于核心业务,从而提高了开发效率。
- 作用:在不修改源码的基础上,对已有方法进行增强。
- 实现原理:动态代理技术。
- 优势:减少重复代码、提高开发效率、维护方便
- 应用场景:事务处理、日志管理、权限控制、异常处理等方面。
AOP相关术语
AOP通知类型
AOP切点表达式
使用AspectJ需要使用切点表达式配置切点位置,写法如下:
标准写法:访问修饰符 返回值 包名.类名.方法名(参数列表)
访问修饰符可以省略。
返回值使用 * 代表任意类型。
包名使用 * 表示任意包,多级包结构要写多个 * ,使用 *.. 表示任
意包结构
类名和方法名都可以用 * 实现通配。
参数列表
基本数据类型直接写类型
引用类型写 包名.类名
* 表示匹配一个任意类型参数
.. 表示匹配任意类型任意个数的参数
全通配: * *..*.*(..)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
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.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<context:component-scan base-package="com.neu.dao"></context:component-scan>
<bean id="MyAspectAdvice" class="com.neu.advice.MyAspectAdvice"></bean>
<bean id="MyAspectAdvice2" class="com.neu.advice.MyAspectAdvice2"></bean>
<aop:config>
<aop:aspect ref="MyAspectAdvice">
<aop:pointcut id="myPointCut" expression="execution(* com.neu.dao.UserDao.*(..))"/>
<aop:after-returning method="MyAfterReturning" pointcut-ref="myPointCut"></aop:after-returning>
<aop:before method="myBefore" pointcut-ref="myPointCut"></aop:before>
<aop:after-throwing method="myAfterThrowing" pointcut-ref="myPointCut" throwing="ex"></aop:after-throwing>
<aop:after method="myAfter" pointcut-ref="myPointCut"></aop:after>
<aop:around method="myAround" pointcut-ref="myPointCut"></aop:around>
</aop:aspect>
<aop:aspect ref="MyAspectAdvice2">
<aop:pointcut id="myPointCut2" expression="execution(* com.neu.dao.UserDao.*(..))"/>
<aop:after-returning method="myAfterReturning" pointcut-ref="myPointCut2"></aop:after-returning>
</aop:aspect>
</aop:config>
</beans>
AOP多切面配置
我们可以为切点配置多个通知,形成多切面,比如希望dao层的每个方法结束后都可以打印日志并发送邮件
|