<dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.7</version> </dependency> public aspect LoggingAspect { before(): execution(* com.example.MyClass.myMethod(..)) { System.out.println("Method execution started."); } after(): execution(* com.example.MyClass.myMethod(..)) { System.out.println("Method execution finished."); } }


上一篇:
下一篇:
切换中文