I have the following pointcut:

@Before(value="execution(* datasync.polling.Poller+.*(..))")
public void beforePoll() {
    logger.info("DOING THIS");
}

And the following abstract class:

package datasync.polling;
import datasync.principle;

public abstract class Poller<P extends Principle> {
protected P principle;

public Poller(P principle) {
    this.principle = principle;
}

@Override
public String toString() {
    return "Poller for " + principle.toString();
}

public abstract P doPoll();

}

My pointcut only applies when I call Poller.toString(), not Poller.doPoll(). I would expect it to apply to any method that takes any number of arguments within the Poller class or it's subclasses. Why is this not the case?

link|improve this question

63% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.