lic class SampleAspect { ? ?@Pointcut("execution(* org.example.xxx.*.*(..))") ? ?private void executionPointcut() { ? ?} ? ?@After(value = "executionPointcut()") ? ?public void doAfter() { ? ?}}