【Spring进阶系列丨第十篇】基于注解的面向切面编程(AOP)详解

ops/2024/11/15 6:15:19/

文章目录

  • 一、基于注解的AOP
    • 1、配置Spring环境
    • 2、在beans.xml文件中定义AOP约束
    • 3、定义记录日志的类【切面】
    • 4、定义Bean
    • 5、在主配置文件中配置扫描的包
    • 6、在主配置文件中去开启AOP的注解支持
    • 7、测试
    • 8、优化改进
    • 9、总结

在这里插入图片描述

一、基于注解的AOP

1、配置Spring环境

<dependencies><!-- 导入Spring的jar包--><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.2.1.RELEASE</version></dependency><dependency><groupId>org.aspectj</groupId><artifactId>aspectjweaver</artifactId><version>1.9.4</version></dependency>
</dependencies>

2、在beans.xml文件中定义AOP约束

<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"xmlns:aop="http://www.springframework.org/schema/aop"xsi:schemaLocation="http://www.springframework.org/schema/beanshttps://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttps://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/aophttps://www.springframework.org/schema/aop/spring-aop.xsd">
</beans>

3、定义记录日志的类【切面】

java">@Component("logger")
@Aspect // 表示的是一个切面
public class Logger {// 目的:在调用业务方法之前进行增强【前置通知】@Before("execution(* cn.bdqn.service.impl.*.*(..))")public void beforePrintLog(){System.out.println("前置通知----beforePrintLog---开始打印日志啦");}// 后置通知@AfterReturning("execution(* cn.bdqn.service.impl.*.*(..))")public void afterReturningPrintLog(){System.out.println("后置通知----afterReturningPrintLog");}
}

​ 注意,该类的两个细节:

a、@Component注解向容器中注册一个Bean。

b、@Aspect注解表示这个是一个切面类。

c、@Before注解表示的是这个是前置增强/前置通知。

4、定义Bean

java">package cn.bdqn.domain;public class User {}
java">package cn.bdqn.service;
public interface UserService {// 保存用户public void save(User user);
}
java">package cn.bdqn.service.impl;
@Service("userService")	// 向容器中注册Bean
public class UserServiceImpl implements UserService {@Overridepublic void save(User user) {System.out.println("保存用户啦");}
}

​ 注意:对于业务Bean,我们也需要通过@Service注解来向容器中注册。

5、在主配置文件中配置扫描的包

<beans><context:component-scan base-package="cn.bdqn"/>
</beans>

6、在主配置文件中去开启AOP的注解支持

<beans><aop:aspectj-autoproxy/>
</beans>

7、测试

java">public class UserServiceTest {@Testpublic void testUserService() throws Exception{ApplicationContext ac = new ClassPathXmlApplicationContext("beans.xml");UserService userService = (UserService) ac.getBean("userService");userService.queryAll();}
}

8、优化改进

​ 问题:我们看到对于切面类中定义的通知,有一个共性问题是,切入点表达式是相同的 , 那我们在想能否也像xml配置的那样,把切入点表达式给抽取出来呢?答案是可以的,改造如下:

java">@Component("logger")
@Aspect // 表示的是一个切面
public class Logger {@Pointcut("execution(* cn.bdqn.service.impl.*.*(..))")private void pt(){}// 目的:在调用业务方法之前进行增强【前置通知】@Before("pt()")public void beforePrintLog(){System.out.println("前置通知----beforePrintLog---开始打印日志啦");}// 演示的后置通知@AfterReturning("pt()")public void afterReturningPrintLog(){System.out.println("后置通知----afterReturningPrintLog");}
}

9、总结

  • 配置业务Bean

    java">@Service("userService")
    public class UserServiceImpl implements UserService{}
    
  • 配置切面Bean

  • 需要在切面类上定义@Aspect // 表示的是一个切面

    java">@Component("logger")
    @Aspect // 表示的是一个切面
    public class Logger {}
    
  • 在切面类中的通知方法上定义相应的通知

    @Before: 前置通知
    @AfterReturning:后置通知
    @AfterThrowing: 异常通知
    @After:最终通知
    @Around: 环绕通知
    
  • 定义切入点表达式

    java">@Before("execution(* cn.bdqn.service.impl.*.*(..))")
    public void beforePrintLog(){System.out.println("前置通知----beforePrintLog---开始打印日志啦");
    }
    
  • 在主配置文件中去开启AOP的注解

    aop:aspectj-autoproxy/


在这里插入图片描述


http://www.ppmy.cn/ops/5728.html

相关文章

Linux使用Docker部署Firefox火狐浏览器并实现无公网IP远程访问

文章目录 1. 部署Firefox2. 本地访问Firefox3. Linux安装Cpolar4. 配置Firefox公网地址5. 远程访问Firefox6. 固定Firefox公网地址7. 固定地址访问Firefox Firefox是一款免费开源的网页浏览器&#xff0c;由Mozilla基金会开发和维护。它是第一个成功挑战微软Internet Explorer浏…

flutter书架形式格口的动态创建(行、列数,是否全选的配置)

根据传入的行列数创建不同格口数量的书架 左图&#xff1a;5行3列、右图&#xff1a;3行3列 代码 import package:jade/bean/experienceStation/ExpCellSpecsBean.dart; import package:jade/configs/PathConfig.dart; import package:jade/utils/DialogUtils.dart; import p…

SQLite运行时可加载扩展(三十五)

返回&#xff1a;SQLite—系列文章目录 上一篇:SQLite轻量级会话扩展&#xff08;三十四&#xff09; 下一篇&#xff1a;SQLite—系列文章目录 1. 概述 SQLite 能够在运行时加载扩展&#xff08;包括新的应用程序定义的 SQL 函数、整理序列、虚拟表和 VFS&#xff09…

Suno,属于音乐的ChatGPT时刻来临

AI绘画 AI视频我们见过了&#xff0c;现如今AI都能生成一首音乐&#xff0c;包括编曲&#xff0c;演唱&#xff0c;而且仅需几秒的时间便可创作出两分钟的完整歌曲 相信关注苏音的很大一部分都是从获取编曲或者混音插件来的&#xff0c;现如今AI却能帮你几秒生成曲子 今天就带…

华为海思校园招聘-芯片-数字 IC 方向 题目分享——第五套

华为海思校园招聘-芯片-数字 IC 方向 题目分享——第五套 (共9套&#xff0c;有答案和解析&#xff0c;答案非官方&#xff0c;仅供参考&#xff09;&#xff08;共九套&#xff0c;每套四十个选择题&#xff09; 部分题目分享&#xff0c;完整版获取&#xff08;WX:didadida…

【JavaScript编程实操14】DOM实操_回到顶部

前言 本次主要是针对Javascript阶段的DOM实操方面的练习&#xff0c;本次主要实现当页面内容过多时&#xff0c;可以点击按钮&#xff0c;快速回到页面顶部的效果。这次的实现逻辑比较简单&#xff0c;主要是应用函数实现页面的回到顶部功能&#xff0c;this.scrollTo(0, 0)可以…

Java中对象如何拷贝?

hi&#xff0c;我是程序员王也&#xff0c;一个资深Java开发工程师&#xff0c;平时十分热衷于技术副业变现和各种搞钱项目的程序员~&#xff0c;如果你也是&#xff0c;可以一起交流交流。 今天我们来聊一聊Java中的对象拷贝~ 浅拷贝与深拷贝 在Java中&#xff0c;对象拷贝可…

python-flask结合bootstrap实现网页小工具实例-半小时速通版

参考&#xff1a; Python之flask结合Bootstrap框架快速搭建Web应用_支持bootstrap的python软件-CSDN博客 https://blog.csdn.net/lovedingd/article/details/106696832 Bootstrap 警告框 | 菜鸟教程 https://www.runoob.com/bootstrap/bootstrap-alert-plugin.html flask框架…