# aop-test **Repository Path**: zuoer_608/aop-test ## Basic Information - **Project Name**: aop-test - **Description**: 这是一个AOP测试项目 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-17 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: Testing ## README ## 这是一个AOP测试项目 1. Spring版本 4.3.11.RELEASE 2. 使用了AspectJ AOP,即编译时完成的代理类的生成 ### 演示了四种AOP切入场景 1. `@Before` 2. `@After` 3. `@AfterReturning` 4. `@AfterThrowing` ### 演示了对方法切入和对注解切入 1. `@Pointcut("execution(* com.*.*.Calc.*(..))")` 2. `@Pointcut("@annotation(com.my.aop.CheckAuth)")`