AOP

aop 面向切面编程, 把一个通用的方法提出,通过配置文件的配置,织入到其他方法中,可以在方法前后调用此切面方法
spring中的aop是方法的横切问题
使用场合:
1)一般不涉及业务的,比如:日志功能
2)JoinPoint 织入的方法的参数, 能得到某个被干预方法的参数
changeObj(JoinPoint joinPoint){
    Object[] args = joinPoint.getArgs();
}
3)缺点: 只能得到被干预方法的参数,不易做业务处理
例子如下:
在spring中的配置文件:
//切面方法的类
<bean id="securityHandler" class="com.harmony.dsmanage.recordchange.service.impl.SecurityHandler"/>

<aop:config>
//方面=advice(通知)+pointcut
<aop:aspect id="securityOne" ref="securityHandler">
//切入点
<aop:pointcut id="allAddMethod" expression="execution(* MyServiceImpl.save*(..))"/>
//切入时机
<aop:before method="changeObj" pointcut-ref="allAddMethod"/>
</aop:aspect>
<aop:aspect id="securityDangerMatter" ref="securityHandler">
<aop:pointcut id="allAddMethod2" expression="execution(* MyServiceImpl.save*(..))"/>
<aop:before method="changeObj" pointcut-ref="allAddMethod2"/>
</aop:aspect>
</aop:config>

你可能感兴趣的:(AOP)