1. 程式人生 > >Aop 中pointcut的設定

Aop 中pointcut的設定

<?xml version="1.0" encoding="UTF-8"?>






aop:config
<aop:aspect id=“moocAspectAOP” ref=“moocAspect”>


<aop:pointcut id=“moocPointcut” expression=“execution ( * com.learning.aop.schema.advice.biz.Biz.(…))”/>

<aop:before method=“before” pointcut-ref=“moocPointcut”/>
</aop:aspect>
</aop:config>

在這裡插入圖片描述