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 ?

link|improve this question

41% accept rate
"giving a compilation error" what error do you see ? – Prashant Bhate Nov 29 '11 at 13:47
java.lang.IllegalArgumentException: Pointcut is not well-formed: expecting 'name pattern' at character position 139 – user2434 Nov 29 '11 at 13:47
feedback

1 Answer

You should combine point cut expresstions using "&&" rather than "and".

Pointcut expressions can be combined using '&&', '||' and '!'.

link|improve this answer
I don't think that's the problem. Tried your suggestion, but not working. – user2434 Nov 29 '11 at 14:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.