springboot切面应用

文章介绍了如何使用SpringAOP中的@Aspect和@Component注解实现切面类,包括环绕通知和后置通知的使用。环绕通知用于在返回的student对象的sname后拼接around字符串,后置通知则在入参后面拼接idididdi并打印日志。自定义注解@StudentBeforeAopAnnotation用于定位切点方法,示例中展示了使用该注解的方法getById()。
摘要由CSDN通过智能技术生成

1、切面场景

无侵入的实现功能增强

2、实现

切面类的实现

需要使用注解@Aspect和Componet来实现,

环绕通知的作用在返回的student的sname后面拼接around字符串。

后置通知的作用在入参后面拼接idididdi,然后打印日志

@Aspect
@Component
public class StudentBeforeAspect {

    @Pointcut("@annotation(com.nio.annotation.StudentBeforeAopAnnotation)")
    public void studentBefortAspect(){}

    @AfterReturning(value = "studentBefortAspect()")
    public void addInfo(JoinPoint joinPoint){
        final Object[] args = joinPoint.getArgs();
        if (ObjectUtils.isNotEmpty(args)){
            for (Object arg : args) {
                if (arg instanceof String){
                    String id = String.valueOf(arg) + "idididdi";
                    System.out.println("id is " + id);
                }
            }
        }
    }

    @Around(value = "studentBefortAspect()")
    public Object addInfo(ProceedingJoinPoint proceedingJoinPoint){
        StudentInfo result = null;
        final Object[] args = proceedingJoinPoint.getArgs();
        try {
            Object proceed = proceedingJoinPoint.proceed(args);
            if (Objects.nonNull(proceed)) {
                if (proceed instanceof StudentInfo) {
                    result = (StudentInfo) proceed;
                    result.setSname(result.getSname() + "aroud");
                    return result;
                }
            }
        } catch (Throwable e) {
            throw new RuntimeException(e);
        }
        return result;
    }
}

注解的实现

自定义注解来实现切点方法的定位

@Target(ElementType.METHOD)
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface StudentBeforeAopAnnotation {
}

切点方法

    @StudentBeforeAopAnnotation
    public StudentInfo getById(String id) {
        return studentDomainService.getById(id);
    }

运行结果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值