springAop


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

}

 

posted @ 2018-07-02 01:03  与君共舞  阅读(137)  评论(0编辑  收藏  举报