欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot中定位切点的两种常用方法

程序员文章站 2022-07-03 17:35:18
有时候,我们使用aop来进行放的增强,编写切面类的时候,需要定位在哪个方法上试用该切面进行增强,本片文章主要讲解两种在springboot中定位切点的方法,一种是使用execution表达式的方法,一...

有时候,我们使用aop来进行放的增强,编写切面类的时候,需要定位在哪个方法上试用该切面进行增强,本片文章主要讲解两种在springboot中定位切点的方法,一种是使用execution表达式的方法,一种则是利用自定义注解的方法。

接下来以一个简单的例子来讲解这两种方法的使用方式。

<==========方法执行前==========>
method();
<==========方法执行后==========>

execution 表达式

execution表达式的方式主要是在定义切点的时候,通过表达式的方式选取到所需要增强的方法。

execution表达式解读

execution(<修饰符模式>?<返回类型模式><方法名模式>(<参数模式>)<异常模式>?)

类型 解读 是否必须 示例
<修饰符模式> 表示所选的修饰符类型 public/private/...
<返回类型模式> 表示所选的返回值类型 void/int/...
<方法名模式> 表示所选的包或者方法 com.luke.service/com.luke.controller.*/...
(<参数模式>) 表示所选方法的参数 *(..)/*(string name)/*(int size, ..)/...
<异常模式> 表示所选方法的异常类型 throws exception/...
 // 匹配指定包中的所有方法
execution(* com.luke.service.*(..))

// 匹配当前包中的所有public方法
execution(public * userservice.*(..))

// 匹配指定包中的所有public方法,并且返回值是int类型的方法
execution(public int com.luke.service.*(..))

// 匹配指定包中的所有public方法,并且第一个参数是string,返回值是int类型的方法
execution(public int com.luke.service.*(string name, ..))

自定义切面类:

@aspect
@component
public class logaspect {

    @pointcut("execution(* com.luke.springdata.controller.*.*(..))")
    public void operationlog(){}

    /**
     * 这里只定义一个around的增强做展示
     */
    @around("operationlog()")
    public object doaround(proceedingjoinpoint joinpoint) {
        object proceed = null;
        try {
            system.out.println("方法执行前");
            proceed = joinpoint.proceed();
            system.out.println("方法执行后");
        } catch (throwable throwable) {
            throwable.printstacktrace();
        }
        return proceed;
    }
}

此切点的execution表达式为com.luke.springdata.controller包下的所有方法。
使用**@around**注解表明增强的方法,并且指定切点。

测试用controller类

@restcontroller
@requestmapping("/person")
public class personcontroller {

    @getmapping("/test")
    public void test(){
        system.out.println("方法执行了");
    }
    
}

运行项目,调用该方法,查看结果。

方法执行前
方法执行了
方法执行后

自定义注解的方法

自定义注解的方式就是在需要增强的方法上面加上自定义的注解即可。

自定义注解类:

@documented
@target({elementtype.method})
@retention(retentionpolicy.runtime)
public @interface log{
    
}

这里自定义了一个注解log,该注解只能加在方法上。
自定义切面类:

@aspect
@component
public class logaspect {

    @pointcut("@annotation(com.luke.springdata.annotation.log)")
    public void operationlog(){}

    /**
     * 这里只定义一个around的增强做展示
     */
    @around("operationlog()")
    public object doaround(proceedingjoinpoint joinpoint) {
        object proceed = null;
        try {
            system.out.println("方法执行前");
            proceed = joinpoint.proceed();
            system.out.println("方法执行后");
        } catch (throwable throwable) {
            throwable.printstacktrace();
        }
        return proceed;
    }
}

这里编写的自定义个切面类,用**@pointcut注解定义一个切面,并且这次采用@annotation(xxx)**的方式表明如果哪个方法上添加了xxx注解,则就使用该切面做增强。

同时在每个增强的方法上使用该切面,随后编写正常的方法增强逻辑即可。

测试用controller类

@restcontroller
@requestmapping("/person")
public class personcontroller {

    @log
    @getmapping("/test")
    public void test(){
        system.out.println("方法执行了");
    }
    
}

此时在需要使用切面的方法上加入**@log**注解,调用该方法,查看效果。

方法执行前
方法执行了
方法执行后

总结

两种方式均能实现aop的功能,在使用上,如果某个包下面的所有方法,都需要这个切面进行增强,那么使用execution表达式的方式更方便。但如果只有部分方法需要,并且分布在不同的类中,则注解的方式更灵活。

到此这篇关于springboot中定位切点的两种常用方法的文章就介绍到这了,更多相关springboot 定位切点内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!