我在尝试使用Guice AOP时遇到了NoSuchMethodError

时间:2015-01-27 21:49:09

标签: websphere aop guice

我试图使用Guice AOP进行性能分析:

@Override
protected void configure()
{
    this.bindInterceptor(Matchers.any(), Matchers.annotatedWith(Profiled.class), new ProfileInterceptor());
}

它在本地工作正常,但是当我尝试部署到Websphere Application Server时,我得到了一个

java.lang.NoSuchMethodError: cnphi/base/profiling/ProfilingModule.bindInterceptor(Lcom/google/inject/matcher/Matcher;Lcom/google/inject/matcher/Matcher;[Lorg/aopalliance/intercept/MethodInterceptor;)

知道这里发生了什么吗?

0 个答案:

没有答案