我使用dwr对一个表进行了更新,aop拦截service将更新的状态插入日志操作,但是为什么会拦截2次,在日志表中有2条记录的,但是通过表单提交时,却只会拦截1次,望高手回答。切面的spring代码
<aop:config>
<aop:pointcut id="serviceUpdatePointcut" expression="execution(* com.becom.gd.*.service.*.update*(..))" /><aop:aspect ref="BusinessLogAspect">
    <aop:after-returning pointcut-ref="serviceUpdatePointcut" method="afterUpdateReturnCall" returning="retVal" />
</aop:aspect>
</aop:config>