0

我有以下方法

    @AutoHandling(slot = FunctionalArea.PRE_MAIN_MENU)
    @RequestMapping(method = RequestMethod.GET)
    public String navigation(ModelMap model) {
        logger.debug("navigation");
        ...

            //First time to the Main Menu and ID-Level is ID-1 or greater
            if (!callSession.getCallFlowData().isMainMenuPlayed()
                    && callSession.getCallFlowData().getIdLevel() >= 1) {
                // Call Auto Handling                    
                logger.info("Call AutoHandling");
                autoHandlingComponent.processAutoHandling();
            }
        ...

        return forward(returnView);
    }

基本上我想做的是在 processAutoHandling() 上有一个切入点但是在@After 中,我需要将 slot() 用于@AutoHandling

我试过这个,但它没有被调用

@Pointcut("execution(* *.processAutoHandling())")
public void processAutoHandleCall() {
    logger.debug("processAutoHandleCall");
}

@Around("processAutoHandleCall() &&" +
        "@annotation(autoHandling) &&" +
        "target(bean) "
)
public Object processAutoHandlingCall(ProceedingJoinPoint jp,
                                      AutoHandling autoHandling,
                                      Object bean)
        throws Throwable {
         ...
4

2 回答 2

2

您可以为此使用虫洞设计模式。我正在说明使用基于 AspectJ 字节码的方法和语法,但如果您使用 Spring 的基于代理的 AOP,您应该能够使用显式 ThreadLocal 获得相同的效果。

pointcut navigation(AutoHandling handling) : execution(* navigation(..)) 
                                             && @annotation(handling);

// Collect whatever other context you need
pointcut processAutoHandleCall() : execution(* *.processAutoHandling());

pointcut wormhole(AutoHandling handling) : processAutoHandleCall() 
                                           && cflow(navigation(handling));

after(AutoHandling handling) : wormhole(hanlding) {
   ... you advice code
   ... access the slot using handling.slot()
}
于 2011-01-21T18:56:12.407 回答
0

a)它行不通,你试图匹配两个不同的东西:

@Around("processAutoHandleCall() &&" +
        "@annotation(autoHandling) &&" +
        "target(bean) "
)

processHandleCall()匹配内部方法执行autoHandlingComponent.processAutoHandling(),同时@annotation(autoHandling)匹配外部方法执行navigation(ModelMap model)

b)由于您显然是在尝试向控制器提供建议,因此有一些警告:

  • 如果你使用proxy-target-class=true一切都应该按原样工作,只要确保你没有任何最终方法
  • 如果不这样做,则所有控制器方法都必须由接口支持,并且@RequestMappingetc 注释必须在接口上,而不是Spring MVC 参考文档的本节中描述的实现类
于 2011-01-21T14:29:31.047 回答