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

五迷三道 提交于 2020-01-29 22:33:46

有如下两个切点:

@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}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!