I am using annotation to indicate that an advice needs to be applied to the method.
I have the two methods in an interface called IMaintenanceDAOSupport
@AuditLogging
void insert(M domainobject, IntResponse response, String statementName);
@AuditLogging
int delete(M domainobject, IntResponse response, String statementName);
How do we configure the xml for the aspect to be applied?
At present I have
<aop:config>
<aop:aspect ref="auditAOP">
<aop:pointcut id="im-insert"
expression="within(IMaintenanceDAOSupport)and execution(@annotation(AuditLogging))"/>
<aop:after method="afterInsertUpdateOrDelete" pointcut-ref="im-insert"/>
</aop:aspect>
</aop:config>
It is giving a compilation error; Do you see any mistake in the configuration ?