Purna Chandu Sapparapu

Greenhorn
+ Follow
since Jul 18, 2016
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Purna Chandu Sapparapu



Static point cut:

--> The proxy for target class will be created at runtime.
--> But here the proxy will be created with the methods those supplied by taking the help of static pointcut class.
--> Due to above one performance will be optimized

Dynamic point cut :

--> The proxy for target class will be created at runtime.
--> But here the proxy will be created for all  the methods of the target class.
--> Here when we want to even consider arguments values also for conditional checking then we need to go for dynamic pointcut.