首页 > 其他分享 > 用注解实现AOP

用注解实现AOP

时间:2023-02-12 21:03:48浏览次数:40  
标签:scan 实现 spring AOP Pointcut context aop 注解 com

一、

@Aspect:切面类

@Before:前置

@Around:环绕

@AfterRetuming:后置

@AfterThrowing:异常

@After:最终

@Pointcut:连接点,标注在一个无返、无参、


二、加载

<context:component-scan base-package="com.spring.*"/>

<!--声明一个日志切面类的对象(实例)-->

<bean id="loggerAspect" class="com.spring.aop.LoggerAspect"/>

<!--启动都会aspectj注解的支持,自动为匹配的Bean创建代理-->

<aop:aspectj-autoproxy/>

标签:scan,实现,spring,AOP,Pointcut,context,aop,注解,com
From: https://blog.51cto.com/u_15907719/6052147

相关文章