Hi,
I have a MethodInterceptor and a FactoryBean that extends this
MethodInterceptor. In the afterProperties method I do this:
ProxyFactory proxyFactory = new ProxyFactory(this.target);
proxyFactory.addAdvice(this);
this.serviceObject = proxyFactory.getProxy();
I can call the target through the proxy but the MethodInterceptor
invoke method is not called. The target is a proxy created by
HttpInvokerProxyFactoryBean.
What am I doing wrong here?
Steven
|