AOP之执行前通知@Before

Spring AOP之执行前通知@Before

此文章说一下执行前通知,即注解@Before。

作用

多用于日志记录、权限校验、初始化资源等。

触发时间

目标函数执行触发。

定义

@Aspect
@Component
public class AopBeforeAspect {
    @Before("execution(public * com.example.demo.service.impl.AccountServiceImpl.aopBeforeMsg(..))")
    public void beforeMsg(){
        System.out.println("触发Before通知");
    }
}

说明

execution用于指定监听范围。execution可以有很多写法,下面会介绍几种。

“execution(public * com.example.demo.service.impl.AccountServiceImpl.aopBeforeMsg(…))”
“execution(* com.example.demo.service.impl.AccountServiceImpl.aopBeforeMsg(…))”

以上两种写法都表明监听com.example.demo.service.impl.AccountServiceImpl类下的aopBeforeMsg函数。

“execution(public * com.example.demo.service.impl.AccountServiceImpl.*(…))”

以上表明监听AccountServiceImpl类下的所有函数。

“execution(public * com.example.demo.service.impl.AccountServiceImpl.get*(…))”

以上写法表明监听AccountServiceImpl类下所有get开头函数。

"execution(public * com.example.demo.service.impl.AccountServiceImpl.get*(…)) || || execution(* com.example.service.OrderService.get*(…)) "

以上写法表示监听AccountServiceImpl类与OrderService类中get开头的函数。

“execution(* com.example.service…*(…))”

以上写法表示监听service包下的所有函数。

注意点

  1. @Before只能监听public与protected修饰的函数,别private或者final修饰的无法触发
  2. @Before只能监听被Spring管理的实例。也就是说,假如是通过自己代码new的实例,无法触发
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值