maybe the problem is i have used an annotation for my aspect? this is my
aspect:

package aspects;

public aspect Logging {

        public pointcut thisLog() : execution(@Log * *.*(..));
        
        before() : thisLog() {
                System.out.println("CIAO");
        }
}

how can be the aop.xml?

--
View this message in context: 
http://aspectj.2085585.n4.nabble.com/AspectJ-PDE-export-problems-tp3387024p3394722.html
Sent from the AspectJ - users mailing list archive at Nabble.com.
_______________________________________________
aspectj-users mailing list
aspectj-users@eclipse.org
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to