spring aop @after和@before之类的注解,怎么指定多个切点

有如下两个切点:

@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}
posted @ 2020-01-29 21:28  未月廿三  阅读(6819)  评论(0编辑  收藏  举报