0

'aop:aspectj-autoproxy' 和 'mvc:annotation-driven' 都存在于 XML 配置中。这两个类都被定义为同一个 XML 中的一个 bean。

在本地/开发环境中使用 Spring 3.2.3.RELEASE 和 Google App Engine 1.8.1。

我的切入点没有执行。

我的建议。在使用 @Aspect 注释的类中声明。

@Component
@Aspect
public class RequestLimiter {
    private MemcacheService cache = MemcacheServiceFactory.getMemcacheService();

@Pointcut("within(@pcs.annotations.LimitRequests com.zdware.pcs.controllers.PingCollectorController)")
public void methodRequestLimited(){}

 @Around("methodRequestLimited() && args(req,limitRequests)")
     public Object requestGateWay(ProceedingJoinPoint jp, HttpServletRequest req,LimitRequests limitRequests) throws Throwable {

     // do stuff

    }
}

我用来在控​​制器层进行测试的方法。

@Controller
public class PingCollectorController {
@RequestMapping(value="/test")
@LimitRequests(requestTimeLimit = 1, functionName = "Test")
public String test(){
    return "test"; // this will return me to a jsp that doesnt exist, but my advice is still not executing.
}
 }
4

1 回答 1

2

CGLIB 在类路径中吗?将需要生成代理(因为您的控制器没有实现接口,所以 spring 不能使用更简单的 JDK 代理)。

于 2013-07-02T03:11:33.033 回答