首页 > 代码库 > 使用注解匹配Spring Aop切点表达式
使用注解匹配Spring Aop切点表达式
Spring中的类基本都会标注解,所以使用注解匹配切点可以满足绝大部分需求
主要使用@within()/@target @annotaton() @args()等...
匹配@Service类中的所有方法:
@within(org.springframework.stereotype.Service)
或
@target(org.springframework.stereotype.Service)
匹配标注了@RequestMapping的所有方法
@annotation(org.springframework.web.bind.annotation.RequestMapping)
匹配参数中有@RequestBody的所有方法
@args(org.springframework.web.bind.annotation.RequestBody)
注:有关注解的AspectJ指示器只作用于目标Class,即当这类指示器指向interface时,不能匹配实现类
使用注解匹配Spring Aop切点表达式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。