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?