Reflection
-
Core Java
Java Reflection Tutorial – The ULTIMATE Guide (PDF Download)
EDITORIAL NOTE: In this post, we feature a comprehensive Java Reflection Tutorial. Reflection is a feature in the Java programming…
Read More » -
Core Java
Processing Java Annotations Using Reflection
In my previous article covering Java Annotations, I outlined a recent use case and provided you with some examples of custom…
Read More » -
Enterprise Java
Auditing infrastructure for your app using Spring AOP, Custom annotations and Reflection
The next post will demonstrate how to write simple auditing using Spring AOP and annotations. The auditing mechanism will be…
Read More » -
Core Java
Using Reflection for Testing
I am working on a presentation about the ‘Single Responsibility Principle’, based on my previous post. It take most of…
Read More » -
Core Java
Implementing dynamic proxies – a comparison
Sometimes there is the need to intercept certain method calls in order to execute your own logic everytime the intercepted…
Read More » -
Core Java
Java Reflection Tutorial
In this tutorial, I mainly write some examples to introduce what Java reflection can do. Hopefully, it can give you…
Read More » -
Core Java
Java’s Reflection API
If you have ever asked yourself questions like these: – “How do I invoke a method, having only it’s name…
Read More » -
Core Java
Duck typing in Java ? Well, not exactly
According to Wikipedia duck typing is: style of dynamic typing in which an object’s methods and properties determine the valid…
Read More » -
Core Java
Creating a Java Dynamic Proxy
Java Dynamic proxy mechanism provides an interesting way to create proxy instances. The steps to create a dynamic proxy is…
Read More »