Does this mean there will be change in the JdkDynamicAopProxy , as that generates the MethodInvocation , which is of type the ReflectiveMethodInvocation ?
Regards
Vicky
Type: Posts; User: vickyk; Keyword(s):
Does this mean there will be change in the JdkDynamicAopProxy , as that generates the MethodInvocation , which is of type the ReflectiveMethodInvocation ?
Regards
Vicky
Rod
I can't think of such a usage where you just have a Advice without the Invocation .Anyway the user will be making the call on the AOP proxy and will expect call to be made at the actual...
Hi All,
Refferring to above quote what does the following statement mean , I can't understand the concept of removal of interception layer in Proxybased AOP .
Regards
Vicky
Rod ,
I dont understand how the integration will help the end user , especially from the weaving to Proxy implemented AOE.
Regards
Vicky
Rod ,
I am not able to understand your statement clearly , ok let me just put a raw design down .Considering a class A as
The Test case class follows :
Now I dont want to write the ATest ,...
Hi All,
I have a idea evolving in my mind , it is using the AOP with the Unit Testing .It can be done with the JUnit , I am in a process of evaulation/analysing this idea and would be glad to...
My idea about the Pooling would be the Performance improvement , typically if the Object is being frequently used . Let us call this a caching of the object , as the concurrent user access increases...
Should not the Introduciton Advisor be used in the case of matching all the methods ?
Rgds
Vicky
I am sure about the RegexpMethodPointcutAdvisor , I have not been aware of regular expression as the word . Do you mean the following snippet
can be replaced by
Rgds
Vicky
Ya that is correct , I have interpreted it wrongly .In this case he could use the DefaultPointcutAdvisor.
Do you mean the slower Development or Slower Execution here ?
Regards
Vicky
I have a different opinion here . I have noticed the flow as
ProxyFactoryBean ------> createAdvisorChain() -----> addAdvisor() -----> namedBeanToAdvisorOrTargetSource() ...
Rod ,
Can I get some of your time on this . :wink:
Regards
Vicky
Hi Rod,
As per your statement then the Advisor in Spring should have the PointCut also , but your design have a seperate Pointcut Advisor and Introduction Advisor ? Why is this like that ?
...
Rod I have not been able to understand the Advisor types , what I can understand is that
1) The Spring Advisor does contain the Advice .
2) There are two types which are provided by you the...
Actually I was trying to figure the design from the class diagram at the http://opensource.objectsbydesign.com/spring/index.html .If you view the aop block there you will find the Advisor with three...
Hi Rod,
What is the significant of the Interception Advisor in your design ?
Aspect does contain the Advice and PointCut , so I can understand the PontCut Advisor in your design...