Tuesday, 10 May 2016

Java Annotations

Annotations were a feature introduces in Java 5. By the way the current version of java is 8.

Annotations tell the compiler about additional information.

Annotations commonly used are :

@Entity
@RequestMapping



Annotations can be applied to class, method, method parameter and instance variable

Share the post