Skip to content

Tag Archives: Java-Annotation

In Java applications, Sometimes we might need to use data from external resources such as text files, XML files, properties files, image files, etc., from… Read More
In the Spring framework, when we declare a POJO instance, what we are actually creating is a template for bean definition. It means, just like… Read More
Java annotations are a mechanism for adding metadata information to our source code (Program). They are a powerful part of Java that was added to… Read More
In Java, annotations are used to attach meta-data to a program element such as a class, method, instances, etc. Some annotations are used to annotate… Read More
Annotations in java are used to associate metadata to program elements like classes, methods, instance variables, etc. There are mainly three types of annotations in… Read More
By default, Java annotations are not shown in the documentation created using the Javadoc tool. To ensure that our custom annotations are shown in the… Read More