首页 > 其他分享 >基于Spring的AOP(注解方式)

基于Spring的AOP(注解方式)

时间:2023-04-01 12:55:58浏览次数:36  
标签:int Spring joinPoint spring result AOP 注解 import public

面向切面编程:

基于Spring的AOP(注解方式)

1-配置:pom文件:

 <packaging>jar</packaging>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.3.1</version>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>

        <!-- spring-aspects会帮我们传递过来aspectjweaver -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aspects</artifactId>
            <version>5.3.1</version>
        </dependency>

    </dependencies>

2-规定包结构

因为我们使用的是jdk的aop,所以必须需要 "接口":

细节:
"接口、实现类、切面类" ---- > "必须被spring管理"(所以需要spring包扫描)

  • 2.1-包扫描:

<?xml version="1.0" encoding="UTF-8"?>
<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/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd">

    <!--基于注解的AOP的实现:
     1、将目标对象和切面交给IOC容器管理(注解+扫描)
     2、开启AspectJ的自动代理,为目标对象自动生成代理-<aop:aspectj-autoproxy/>
     3、将切面类通过注解@Aspect标识
    -->


    <!--2-开启基于'注解的aop'-->
    <context:component-scan base-package="com.atguigu.spring.aop.annotation"/>


</beans>
  • 2.2-接口:

public interface Calculator {
    int add(int i, int j);

    int sub(int i, int j);

    int mul(int i, int j);

    int div(int i, int j);
}
  • 2.3-实现类:

@Component
public class CalculatorPureImpl implements Calculator {
    @Override
    public int add(int i, int j) {
        //Before
        int result = i + j;
        //AfterRunning
        //AfterThrowing,异常时候会执行
        return result;
        //After,不管怎么样都会执行
    }

    @Override
    public int sub(int i, int j) {
        int result = i - j;
        return result;
    }

    @Override
    public int mul(int i, int j) {
        int result = i * j;
        return result;
    }

    @Override
    public int div(int i, int j) {
        int result = i / j;
        return result;
    }
}

  • 2.4-切面类:

package com.atguigu.spring.aop.annotation;



import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.stereotype.Component;

import java.util.Arrays;


// @Aspect表示这个类是一个切面类
@Aspect
// @Component注解保证这个切面类能够放入IOC容器
@Component
@ComponentScan("com.atguigu.spring.aop.annotation")
@EnableAspectJAutoProxy(proxyTargetClass = true)
public class LogAspect {

    //切入点表达式的"重用"
    @Pointcut("execution( * com.atguigu.spring.aop.annotation.CalculatorPureImpl.* (..))")
    public void pointCut(){}

    //@Before("execution(public int com.atguigu.spring.aop.annotation.CalculatorPureImpl.add(int,int))")
    //@Before("execution( * com.atguigu.spring.aop.annotation.CalculatorPureImpl.* (..))")
    @Before("pointCut()")
    public void beforeMethod(JoinPoint joinPoint) {
        String methodName = joinPoint.getSignature().getName();
        String args = Arrays.toString(joinPoint.getArgs()); //返回的是Object[],用Arrays.toString包一下,不然输出的是地址
        System.out.println("Logger-->前置通知,方法名:" + methodName + ",参 数:" + args);
    }

    /**
     * 相当于catch,finally的部分,不论怎么样,都会执行
     */
    @After("pointCut()")
    public void afterMethod(JoinPoint joinPoint) {
        String methodName = joinPoint.getSignature().getName();
        //String args = Arrays.toString(joinPoint.getArgs()); //不需要参数
        System.out.println("Logger-->后置通知,方法名:" + methodName +" 执行完毕····");
    }

    /**
     * 细节:
     1- returning = "result" 和 Object result 的"result名字",需要对应 == 返回值
     */
    @AfterReturning(value = "pointCut()",returning = "result")
    public void afterRunningMethod(JoinPoint joinPoint , Object result) {
        String methodName = joinPoint.getSignature().getName();
        System.out.println("Logger-->中间通知,方法名:" + methodName +" 方法的返回值"+result);
    }

    /**
     * 在异常的时候,爆出:AfterThrowing
     * @param joinPoint
     * @param ex
     */
   @AfterThrowing(value = "pointCut()",throwing = "ex")
    public void affterThrowingMethod(JoinPoint joinPoint , Exception ex) {
        String methodName = joinPoint.getSignature().getName();
        System.out.println("Logger-->异常通知,方法名:" + methodName +" 方法存在异常: "+ex);
    }
}

3-测试:

细节:
被spring配置成代理类,就不可以使用"目标对象",只能使用他的"代理类和父类",
所以这个地方不可以使用CalculatorPureImpl这个目标对象,只能使用它的"父类"-Calculator获取代理对象
package com.atguigu.spring.testes;

import com.atguigu.spring.aop.annotation.Calculator;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class AopTestes {
    @Test
    public void getAnnotationAop() {
        ApplicationContext ioc = new ClassPathXmlApplicationContext("aop-annotation.xml");
        /**
         被spring配置成代理类,就不可以使用"目标对象",只能使用他的"代理类和父类",
         所以这个地方不可以使用CalculatorPureImpl这个目标对象,只能使用它的"父类"-Calculator获取代理对象
         */
        Calculator calculatorBean = ioc.getBean(Calculator.class);
        calculatorBean.add(1,1);
        calculatorBean.div(1,0);

    }
}

标签:int,Spring,joinPoint,spring,result,AOP,注解,import,public
From: https://www.cnblogs.com/chen-zhou1027/p/17278435.html

相关文章

  • Spring(Bean详解)
    GoF之工厂模式GoF是指二十三种设计模式GoF23种设计模式可分为三大类:创建型(5个):解决对象创建问题。单例模式工厂方法模式抽象工厂模式建造者模式原型模式结构型(7个):一些类或对象组合在一起的经典结构。代理模式装饰模式适配器模式组......
  • 从原理上理解Spring如何解决循环依赖
    上图展示了循环依赖是什么,类A存在B类的成员变量,所以类A依赖于类B,类B同样存在类A的成员变量,所以类B也依赖于类A,就形成了循环依赖问题。Spring是如何创建Bean的Spring中Bean初始化的精简流程如下:简要描述一下SpringBean的创建流程:(1)首先Spring容器启动之后,会根据使用不同类型......
  • Springboot 系列 (26) - Springboot+HBase 大数据存储(四)| Springboot 项目通过 HBase
    ApacheHBase是Java语言编写的一款Apache开源的NoSQL型数据库,不支持SQL,不支持事务,不支持Join操作,没有表关系。ApacheHBase构建在ApacheHadoop和ApacheZookeeper之上。ApacheHBase:https://hbase.apache.org/HBase的安装配置,请参考“Springboot系列(24)-......
  • 项目一众筹网07_01_SpringSecurity框架简介和用法、SpringSecurity负责的是 权限验证
    项目一众筹网07_01_SpringSecurity文章目录项目一众筹网07_01_SpringSecurity01简介SpringSecurity负责的是权限验证02-SpringSecurity简介03-Spring的注解模式maven引入Spring环境04-准备测试环境05-加入SpringSecurity环境06-实验1-放行首页和静态资源(下一篇)01简介现在主流的权......
  • 项目一众筹网05_03_树的节点的增删改查、radio、代码里面实现模拟用户点击重置、每次
    系列文章目录文章目录系列文章目录18-添加子节点-目标和思路19-添加子节点-前端:打开模态框20-添加子节点-前端:发送Ajax请求==代码里面实现模拟用户点击重置==21-添加子节点-后端==bug发现异步的问题:每次加载数据的时候都要考虑一下异步的问题==22-更新节点-目标和思路23-更新节点......
  • 项目一众筹网09_00_SpringSecurity
    系列文章目录提示:这里可以添加系列文章的所有文章的目录,目录需要自己手动添加例如:第一章Python机器学习入门之pandas的使用提示:写完文章后,目录可以自动生成,如何生成可参考右边的帮助文档文章目录系列文章目录前言一、pandas是什么?二、使用步骤1.引入库2.读入数据总结前言提示:这......
  • SpringMVC 中常用注解
    1、控制器类的注解(1)@Controller作用:修饰类,一个类被它修饰,就成了控制器类,负责接收和处理HTTP请求,可以返回页面和数据;(2)@RestController(@Controller+@ResponseBody的组合注解)作用:修饰类,一个类被它修饰,就成了控制器类,只返回给用户数据,默认将返回的对象数据转换为jso......
  • SpringMVC 框架的介绍
    Java早期的MVC模型主要使用Servlet组件。用户的请求首先到达Servlet,Servlet作为控制器接收请求,然后调度JavaBean读写数据库的数据,最后将结果放到jsp中展现给用户。但是,Servlet组件功能有限,而且与jsp的耦合度过高,使得基于Servlet组件的MVC架构开发很不方便......
  • Spring(Ioc和Bean的作用域)
    SpringSpring为简化开发而生,让程序员只关心核心业务的实现,尽可能的不在关注非业务逻辑代码(事务控制,安全日志等)。1,Spring八大模块这八大模块组成了Spring1.1SpringCore模块这是Spring框架的最基础的部分,它提供了依赖注入(DependencyInjection)特征来实现容器对Bean的管理。......
  • spring注解
    @Configuration标记到一个类上,说明这个类是一个配置类,相当于一个spring配置文件@ComponentScan扫描包注解 作用:自动扫描指定的包下的 标注有@Repository@Service@Controller  @Bean放在方法上相当于<bean></bean>该方法的返回值类型为该Bean的类型 @Value......