Annotations
-
Core Java
Make agents, not frameworks
Ever since their introduction, Java annotations have become an integral part of the APIs of larger application frameworks. Good examples…
Read More » -
Core Java
How To Process Java Annotations
One of the cool new features of Java 8 is the support for lambda expressions. Lambda expressions lean heavily on…
Read More » -
Core Java
Java Annotations Tutorial – The ULTIMATE Guide (PDF Download)
EDITORIAL NOTE: In this post, we feature a comprehensive Java Annotations Tutorial. Annotations in Java are a major feature and…
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 » -
Core Java
Creating Your Own Java Annotations
If you’ve been programming in Java and using any one of the popular frameworks like Spring and Hibernate, you should be very…
Read More » -
Core Java
Use Java annotation deprecated the right way
There is hardly anything more infuriating that seeing a method @Deprecated without a proper documentation. I feel lost. Should I…
Read More » -
Core Java
Java Annotations Tutorial with Custom Annotation
Java Annotations provide information about the code and they have no direct effect on the code they annotate. In this…
Read More » -
Core Java
Java Annotations – Retention
Consider a Java annotation: public @interface AnAnnotaton { } A class with this annotation applied on it: @AnAnnotaton class AnAnnotatedClass{…
Read More » -
Core Java
Java Annotations: Explored & Explained
One of the many wonderful features of Java 5 SE is the introduction of the Annotations construct. Annotations are tags…
Read More »