blob: 769228378fe276979ef378cd01d0ca2841f5b1d4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import java.lang.annotation.*;
import org.aspectj.lang.annotation.*;
@Aspect
public class MyAspect {
@Before("call(* *.*(..))")
public void myAdvice() {
System.out.println();
}
}
|