Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider I wrote AOP pointcut and made a misprint in it:

@Pointcut("within(com.example.servic..*)")
public void serviceMethod() {}

There is "servic" instead of "service".

I am going to use this pointcut to apply security check before service method invocation. Due to the misprint the security check won't be applied but there will be no error message also.

It seems to be very easy to make such mistakes during refactoring for example.

The question is: how do you check that advices are really applied in your projects?

Thanks in advance!

share|improve this question

2 Answers

up vote 1 down vote accepted

Perfect candidate for a unit test.

share|improve this answer
1  
You mean I should make some test class in the com.example.service package and write a unit test that supports aop to test if this class' methods are wrapped with advice? – Andrey Minogin Dec 6 '10 at 16:00
Yes, exactly that. – Boris Pavlović Dec 6 '10 at 16:08

The most elegant solution is to use a good IDE.

If you are using Eclipse, install the AJDT plugin and you will see an orange arrow to the left of all lines that is matched by an Spring AOP/AspectJ advice and all advices have information on how many matches it has in the code.

Another advantage with a plugin like AJDT is that it also weaves automatically for you everytime Eclipse compiles a class.

An example with the AJDT plugin activated: alt text

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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