我正在使用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()
尝试时,似乎没有任何事情发生。
我的Spring配置中有<aop:aspectj-autoproxy/>
。
端点由Spring创建(使用component-scan
)。
注释的保留策略是运行时。
Spring版本为3.0.3.RELEASE
我不确定有什么问题或我可以尝试调试。
更新:看来Spring AOP没有提取@Endpoint注释类
更新2:AopUtils.isAopProxy(this)
和AopUtils.isCglibProxy(this)
都是false
(即使使用<aop:aspectj-autoproxy proxy-target-class="true"/>
时)
答案 0 :(得分:2)
首先,我必须使用<aop:aspectj-autoproxy proxy-target-class="true"/>
来使用基于类的(CGLIB)代理(而不是基于Java接口的代理)。
其次(这就是我遇到的问题)我必须在处理SOAP请求(contextConfigLocation
)而不是根应用程序上下文的servlet的MessageDispatcherServlet
中指定上述内容。
答案 1 :(得分:0)