Spring Aop编程的demo
2021-07-20 06:06
标签:下一步 roles get 对象 spec exe 注意 isp aop 1: 新建一个普通的bean :Role 属性 Id,name,添加无参构造,setter getter方法 2:新建一个接口:RoleService,随便写一个方法printRole 3:新建一个类RoleServiceImpl,实现RoleService接口,重写printRole方法 注意 @Component 注解别忘了 4:定义切面类 RoleAspect 添加四个通知方法 注意: 添加@Aspect注解 execution中的参数一定要写对,例:"execution(* aop.service.RoleServiceImpl.printRole( ..))" 下一步:配置bean 5:见证奇迹的时刻,code测试代码 结果: 6:总结 Spring Aop编程的demo 标签:下一步 roles get 对象 spec exe 注意 isp aop 原文地址:https://www.cnblogs.com/yuanhailiang/p/9519858.html五个步骤:1 封装pojo对象
2 写切点(接口和实现类,在实现类上加注解@Component)并重新 服务方法
3 写切面类 @Aspect 标明 添加 涉及的 通知方法
4 切面配置类@EnableAspectJAutoProxy 使用spring的自动代理 @Configuration 标明类的作用@ComponentScan("aop") 扫描切点所在的包
5 通过ApplicationContext 获取2中的服务,以构造器的形式注入方法中,再调用方法
文章标题:Spring Aop编程的demo
文章链接:http://soscw.com/index.php/essay/106498.html