Ниже приведен файл XML. Не уверен, почему функция creditCardAmountBorrowedUpdation () не вызывается:
<aop:config>
<aop:aspect id="beforeTransactions" ref="authorizeCCTransactionsLogs">
<aop:pointcut
expression="execution(void AuthorizeCCTransactions.CreditCardHelper.creditCardAmountBorrowedUpdation(..))"
id="beforeDepositing"/>
<aop:before method="beforeApprovingCCTransactions" pointcut-ref="beforeDepositing"/>
<aop:after method="afterApprovingCCTransactions" pointcut-ref="beforeDepositing"/>
</aop:aspect>
</aop:config>