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

A have a simple interface:

package org.example.application;
import java.util.Collection;

public interface Test {
    public Collection<String> findAll();
}

I want to create an advice for this method when around:

package org.example.aspect;
import java.util.Collection;

public aspect TestAspect {
    Collection<String> around() : 
        call(Collection<String> org.example.application.Test.findAll()) {
        return proceed();
    }
}

I Keep getting

advice defined in org.example.aspect.TestAspect has not been applied [Xlint:adviceDidNotMatch]

What am I doing wrong?

share|improve this question

1 Answer

up vote 0 down vote accepted

After a few days i can answer my own question:

The WARNING "advice defined in org.example.aspect.TestAspect has not been applied [Xlint:adviceDidNotMatch]" is given when there is no call to the mothod findAll().

if you create a class that implements the interface test and has a main method that calls findAll(), the warning will vanish.

public class TestImpl implements Test {

    @override
    public Collection<String> findAll() {
        return null;
    }

    public static void main(String[] args) {
        Test test = new TestImpl();
        test.findAll();
    }
}
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.