我想在controller拦截接口的访问次数,结果都不没有用,下面是我的代码
@Component
@Aspect
@EnableAspectJAutoProxy(proxyTargetClass = true)
public class EduAspect {
private final static Logger LOGGER = LoggerFactory.getLogger(EduAspect.class);
//我想拦截sample包下所有以.Controller结尾的方法,但是拦截不到
@Pointcut("execution(* com.sample..*Controller.*(..))")
public void declareLoggerJoinPointExpression() {
}
@Pointcut("@annotation(com.sample.common.annotation.Frequency)")
public void declareFrequencyJoinPoint(){
}
代码就是上面的这样,但是好像一直aop不管用,我也开启了cglib
大家讲道理2017-06-30 09:58:23
你这还没写完吧.....
你只是声明了是切入点. 但是没有通知执行啊.
具体如何配置可详见; http://docs.spring.io/spring/...