/**
* 1、public 方法修饰符
* 2、* 返回值
* 3、com.example.demo.service.*Service.*(..) 拦截以Service结尾的类的任意方法
*/
@Pointcut("execution(public * com.example.demo.service.*Service.*(..))")
public void matchCondition(){

}

 

相关文章:

  • 2021-11-27
  • 2021-10-02
  • 2021-12-20
  • 2022-12-23
  • 2021-06-30
猜你喜欢
  • 2021-10-26
  • 2021-07-08
  • 2021-08-20
相关资源
相似解决方案