What are the advantages of JDK dynamic proxies? Especially in comparison with CGLIB proxies.
Despite the fact that JDK proxies don't bring dependency on any third party library, what are the other advantages of JDK proxies?
I read on few places that CGLIB proxies are slightly faster than JDK proxies. Also CGLIB proxies doesn't require proxied class to implement any interface. From this it seems that CGLIB proxies are superior to JDK proxies. Is that true?
Advantages of JDK dynamic proxies
1k Views Asked by Ondrej Bozek At
2
The use-cases are roughly the same/
No. JDK dynamic proxies are not deprecated. Check the javadoc.
No ... not always. You have already identified one case where you wouldn't. And @Evgeniy Dorofeev. Has identified another ... which was also identified in the Question I linked to!
A third thing to consider is which version of CGLIB to use, and whether it is compatible with other things you are using. (One would expect JDK dynamic proxies to be more stable than CGLIB ... based on where it comes from. Performance is not the only criterion for choosing.)
But basically, it is up to you to make your own decision ... based on your actual system requirements, and not some random recommendations.