我想在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
你這還沒寫完吧.....
你只是聲明了是切入點. 但是沒有通知執行啊.
具體如何配置可詳見; http://docs.spring.io/spring/...