Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the purpose of annotations in Java?

I understand that annotations serve a purpose to modify code without actually BEING code, such as:

@Author(
   name = "Benjamin Franklin",
   date = "3/27/2003"
)

But I don't understand how using the annotation is any better/ clearer/ more concise than just saying name = "Benjamin Franklin" ? How does the addition of annotations strengthen the code?

EDIT: Sorry for another questoin, but I know that @Override can help prevent/ track spelling mistakes when calling methods or classes, but how does it do that? Does it help the actual program at all?

like image 491
user2904549 Avatar asked Dec 04 '13 19:12

user2904549


People also ask

What is the purpose of the annotations?

What is Annotating? Annotating is any action that deliberately interacts with a text to enhance the reader's understanding of, recall of, and reaction to the text. Sometimes called "close reading," annotating usually involves highlighting or underlining key pieces of text and making notes in the margins of the text.

What are the advantages of annotations in Java?

Annotations have a lot of advantages over XML, to name a few : Static type checking - the compiler will check for you where the annotation (once defined properly) is applicable and how. Clean code - its much easier to see (visually) the meta data defined in annotations.

What is the use of annotations in spring?

Spring Annotations are a form of metadata that provides data about a program. Annotations are used to provide supplemental information about a program. It does not have a direct effect on the operation of the code they annotate. It does not change the action of the compiled program.


4 Answers

Annotations are just metadata. On their own they serve little to no purpose. There must be an annotation processor, either at the compiler or run time level that uses them for something.

With an annotation like

@Author(
   name = "Benjamin Franklin",
   date = "3/27/2003"
)

for example, some annotation processor might read it with reflection at run time and create some log file that this author wrote whatever it's annotating on that date.

like image 98
Sotirios Delimanolis Avatar answered Oct 03 '22 05:10

Sotirios Delimanolis


Annotations are metadata. @Override annotation is used to make sure that you are overriding method of a superclass and not just making a method with the same name. Common mistakes here consist of:

  • spelling the method's name wrong equal(Object o) instead of equals(Object o)
  • putting different set of arguments

    MyString extends String { public boolean equals(MyString str) {} }

equals(MyString str) is not overriding the method equals(Object o) and therefore will not be used by standard Java comparators (which is used in some standard functions, such as List.contains() and this is prone to error situation). This annotation helps compiler to ensure that you code everything correctly and in this way it helps program.

@Deprecated annotation doesn't make program not to compile but it makes developers think about using the code that can and/or will be removed in a future releases. So they (developers) would think about moving onto another (updated) set of functions. And if you compile your program with the flag -Xlint compilation process will return with an error unless you remove all usages of deprecated code or explicitly mark them with annotation @SuppressWarnings("deprecation").

@SuppressWarnings is used to suppress warnings (yes, I know it's Captain Obvious style :)). There is a deprecation suppression with @SuppressWarnings("deprecation"), unsafe type casting with @SuppressWarnings("unchecked") and some others. This is helpfull when your project compiler have a compilation flag -Xlint and you cannot (or don't want to) change that.

There are also annotation processors that you integrate into your program build process to ensure that program code meets some sort of criteria. For example with IntelliJ Idea IDE annotation processor you can use @Nullable and @NotNull annotations. They show other programmers when they use your code so that can transfer null as a certain parameter to a method or not. If they transfer null it will cause exception during compilation or before executing a single line method's code.

So annotations are quite helpful if you use them to their full potential.

like image 29
DeGriz Avatar answered Oct 03 '22 07:10

DeGriz


Annotations are most likely used by other programs. Examples include:

@Override IDE (compiler?) ensures that the signatures match

@Deprecated IDE marks occurences, compiler warning

@FXML JavaFX can use these annotations initialize variables in a controller class when an .fxml File is inflated (see http://docs.oracle.com/javafx/2/get_started/fxml_tutorial.htm). They are also used by JavaFX Scene Builder.

like image 20
fabian Avatar answered Oct 03 '22 07:10

fabian


Annotations works as a way to marking up the code. Several frameworks uses it, and some others make a great use of it producing your own.

Besides, is important to understand that annotations are the equivalent to meta-data, but is much more than that, since it works as a tag language for the code.

like image 32
hernanemartinez Avatar answered Oct 03 '22 05:10

hernanemartinez