java – Spring AOP:注释切入点不会导致执行建议

我正在使用
Spring AOP(具有AspectJ注释样式支持),并且如果方法使用特定注释(WsTransaction)注释,则希望执行代码.

这是我的方面:

@Aspect
@Component
public class ExampleAspect {

    @Pointcut("execution(* example.*.ws.*.*(..))")
    public void isWebService() {}

    @Pointcut("@annotation(example.common.ws.WsTransaction)")
    public void isAnnotated() {}

    @Before("isWebService() && isAnnotated()")
    public void before() {
        System.out.println("before called");
    }
}

这是我希望它运行的示例类:

package example.common.ws;

@Endpoint
public class SomeEndpoint {

    @WsTransaction() // I want advice to execute if this annotation present
    @PayloadRoot(localPart = "SomeRequest", namespace = "http://example/common/ws/")
    public SomeResponse methodToBeCalled(SomeRequest request) {
            // Do stuff
            return someResponse;
    }
}

当我改变@Before只使用isWebService()时,它会被调用,但当我尝试使用isWebService()&& isAnnotated()或只是isAnnotated()似乎没有任何事情发生.

我有< aop:aspectj-autoproxy />在我的Spring配置中.

端点由Spring创建(使用组件扫描).

注释的保留策略是运行时.

Spring版本是3.0.3.RELEASE

我不确定有什么问题或者我可以尝试调试.

更新:似乎Spring AOP没有提取@Endpoint注释类

更新2:AopUtils.isAopProxy(this)和AopUtils.isCglibProxy(this)都是假的(即使使用< aop:aspectj-autoproxy proxy-target-class =“true”/>)

最佳答案 首先,我必须使用< aop:aspectj-autoproxy proxy-target-class =“true”/>使用基于类的(CGLIB)代理(而不是基于Java接口的代理).

其次(这就是我陷入困境的地方)我必须在处理SOAP请求(MessageDispatcherServlet)而不是根应用程序上下文的servlet的contextConfigLocation中指定上述内容.

点赞