1 2 3 4 5 6 7 8
package de.test; public aspect MyAspect { before(): execution(void MyMain.sayHello(..)) { System.out.println("before: " + thisJoinPoint.getSignature()); } }