Thanks for the speedy reply.
One does not get any execution feedback or errors on why the proxy was not being created. That is why it would be nice if the documentation in the...
Type: Posts; User: lois; Keyword(s):
Thanks for the speedy reply.
One does not get any execution feedback or errors on why the proxy was not being created. That is why it would be nice if the documentation in the...
I have a "MethodInterceptor" that I wrote. I set up the configuration to use the BeanNameAutoProxyCreator.
I have run some tests where sometimes the bean is proxied and sometimes it is not. I...
Here is my AOP configuration. I am not sure why the BeanNameAutoProxyCreator is not proxying my bean. The other configuration using ProxyFactoryBean does work.
How can I debug the...
Did you try the config where you specify the target bean directly inside instead of the ref bean?
Try to replace:
<property name="target">
<ref bean="srvBusquedaNoxtrumServiceTarget"/>...
I am trying to use an interceptor and the BeanNameAutoProxyCreator. I can get the interceptor to work on a class using the ProxyFactoryBean but not if it is sepcified for the...