有如下两个切点:

@Pointcut("execution(public * com.wyh.data.controller.DepartmentController.*(..))")
public void department(){}
@Pointcut("execution(public * com.wyh.data.controller.UserController.*(..))")
public void user(){}

@Before("department()")//怎样在这里指定多个切点,逗号不可以
public void before(JoinPoint joinPoint){do something}

此时可以这么写

@Before("department()||user()")
public void before(JoinPoint joinPoint){do something}

相关文章:

  • 2022-12-23
  • 2021-08-11
  • 2022-01-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
猜你喜欢
  • 2022-01-01
  • 2022-12-23
  • 2022-01-03
  • 2022-12-23
  • 2021-11-26
相关资源
相似解决方案