In programming, annotations can be used as a special form of syntactic metadata in the source code. Classes, methods, variables, parameters and packages may be annotated.
333
votes
27answers
130k views
When do you use Java's @Override annotation and why?
What are the best practices for using Java's @Override annotation and why?
It seems like it would be overkill to mark every single overridden method with the @Override annotation. Are there ...
56
votes
9answers
16k views
Should a method that implements an interface method be annotated with @Override
Intro
My real question is about the use of the annotation. Trying to find an answer myself, I ran into several other questions. This is why there are also related questions below. I hope this is not ...
38
votes
9answers
22k views
Spring @Transactional Annotation Best Practice
We are currently discussing the Best Practice for placing the @Transactional annotations in our code.
Do you place the @Transactional in the DAO classes and/or their methods or is it better to ...
36
votes
8answers
5k views
Which @NotNull Java annotation should I use?
I'm looking to make my code more readable as well as use tooling like IDE code inspection and/or static code analysis (FindBugs and Sonar) to avoid NullPointerExceptions. Many of the tools seem ...
35
votes
10answers
3k views
How and where are Annotations used in Java?
What are the major areas that we can use Annotations? Is the feature a replacement for XML based configuration?
35
votes
13answers
10k views
Scanning Java annotations at runtime
What is the best way of searching the whole classpath for an annotated class?
I'm doing a library and I want to allow the users to annotate their classes, so when the Web application starts I need to ...
29
votes
12answers
13k views
Injecting Mockito mocks into a Spring bean
I would like to inject a Mockito mock object into a Spring (3+) bean for the purposes of unit testing with JUnit. My bean dependencies are currently injected by using the @Autowired annotation on ...
27
votes
7answers
805 views
Arguments Against Annotations
My team is moving to Spring 3.0 and there are some people who want to start moving everything into Annotations. I just get a really bad feeling in my gut (code smell?) when I see a class that has ...
27
votes
5answers
5k views
Java Annotations
What is the purpose of annotations in Java? I have this fuzzy idea of them as somewhere in between a comment and actual code. Do they effect the running of a program??
What are typical usages for ...
23
votes
11answers
2k views
Why are people continuing to use xml mapping files instead of annotations?
I've observed the strange fact (based on the questions in the hibernate tag) that people are still actively using xml files instead of annotations to specify their ORM (Hibernate/JPA) mappings.
There ...
23
votes
6answers
8k views
Why is not possible to extend annotations in Java?
I don't understand why there is no inheritance in Java annotations, just as Java classes. I think it would be very useful.
For example: I want to know if a given annotation is a validator. With ...
22
votes
4answers
663 views
Why doesn't a missing annotation cause a ClassNotFoundException at runtime?
Consider the following code:
A.java:
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
@interface A{}
C.java:
import ...
22
votes
12answers
9k views
Xml configuration versus Annotation based configuration
In a few large projects i have been working on lately it seems to become increasingly important to choose one or the other (XML or Annotation). As projects grow, consistency is very important for ...
20
votes
3answers
10k views
Why does JPA have a @Transient annotation?
Java has the transientkeyword. Why does JPA have @Transient instead of simply using the already existing java keyword?
20
votes
2answers
24k views
Spring - Annotation Based Controller - RequestMapping based on query string
In Spring annotation-based controller, is it possible to map different query strings using RequestMapping to different methods.
for example
@RequestMapping("/test.html?day=monday")
public void ...
18
votes
4answers
1k views
What are good uses for Python3's “Function Annotations”
Function Annotations: PEP-3107
I ran across a snippet of code demonstrating Python3's function annotations. The concept is simple but I can't think of why these were implemented in Python3 or any ...
17
votes
2answers
4k views
Multiple annotations of the same type on one element?
I'm attempting to slap two or more annotations of the same type on a single element, in this case, a method. Here's the approximate code that I'm working with:
public class Dupe {
public ...
17
votes
10answers
27k views
Setting default values for columns in JPA
Is it possible to set a default value for columns in JPA, and if, how is it done using annotations?
16
votes
1answer
246 views
Which language elements can be annotated using attributes language feature of Delphi?
Delphi 2010 introduced custom attributes which can be added to type declarations and methods. For which language elements can a custom attribute be used?
The examples which I have found so far ...
16
votes
3answers
3k views
@Resource vs @Autowired
Which annotation, @Resource (jsr250) or @Autowired (Spring specific) should I be using when using DI?
I have successfully used both in the past, @Resource(name="blah") and @Autowired ...
16
votes
5answers
489 views
What can you do and not do with java annotations?
The typical use-case is for simple things like @Override, but clearly you can do a lot more with them. If you push the limits of them, you get things like Project Lombok, though my understanding is ...
16
votes
3answers
9k views
Which anotation should I use: @IdClass or @EmbeddedId
The JPA (Java Persistence API) specification has 2 different ways to specify entity composite keys: @IdClass and @EmbeddedId.
I'm using both annotations on my mapped entities, but it turns out to be ...
15
votes
7answers
772 views
Source code annotation tool
I'm looking for a tool with which I can annotate source code.
I have some 3rd party source code (JavaScript) I need to understand and I don't want to change it (add inline comments) so that
line ...
15
votes
3answers
640 views
When is @uncheckedVariance needed in Scala, and why is it used in GenericTraversableTemplate?
@uncheckedVariance can be used to bridge the gap between Scala's declaration site variance annotations and Java's invariant generics.
scala> import java.util.Comparator
import ...
15
votes
2answers
2k views
Which types can be used for Java annotation members?
Today I wanted to create my first annotation interface following this documentation and I got the compiler error "Invalid type for annotation member":
public @interface MyAnnotation {
Object ...
15
votes
5answers
13k views
Eclipse complaining about @Override?
I have an existing project that uses @Override on methods that override INTERFACE methods, and not superclass methods. I cannot alter this in code, but I would like eclipse to stop complaining about ...
14
votes
1answer
1k views
Why java classes do not inherit annotations from implemented interfaces?
I've been using Guice's AOP to intercept some method calls. My class implements an interface and I would like to annotate the interface methods so Guice could select the right methods. Even if the ...
14
votes
3answers
220 views
What Scala annotations modify the compiler's messages?
I know about two:
@deprecated("use blabla instead") is used to add an explanation to the warning output by the compiler when the annotated definition is used in client code.
@implicitNotFound(msg = ...
14
votes
9answers
1k views
Do you use Java annotations? [closed]
Possible Duplicates:
How and where are Annotations used in Java?
Java beans, annotations: What do they do? How do they help me?
Over and over, I read about Java 5's annotations being an ...
14
votes
2answers
2k views
How do I make vim indent java annotations correctly?
When indenting java code with annotations, vim insists on indenting like this:
@Test
public void ...
I want the annotation to be in the same column as the method definition but I can't seem to ...
13
votes
6answers
604 views
Enum default value for Java enum annotation value
Java allows enum as values for annotation values. How can I define a kind of generic default enum value for an enum annotation value?
I have considered the following, but it won't compile:
...
13
votes
5answers
3k views
iPhone Map Kit cluster pinpoints
Regarding iPhone Map Kit cluster pinpoints:
I have 1000's of marks that I want to show on the map but it's just too many to handle so I want to cluster them.
Are there frameworks available or proof ...
13
votes
4answers
2k views
What are the similarities and differences between Java Annotations and C# Attributes?
I have a Java library I'm considering porting to C#. The Java library makes extensive use of annotations (at both build time and run time.)
I've never used C# attributes, but understand that they ...
13
votes
8answers
905 views
Is there a good reason to configure hibernate with XML rather than via annotations?
I've been using Hibernate for a few years but have only used it with annotations, and by setting the connection parameters in my code.
Am I "missing something" by not using the XML files? Are there ...
13
votes
11answers
2k views
Java annotations for design patterns?
Is there a project that maintains annotations for patterns?
For example, when I write a builder, I want to mark it with @Builder.
Annotating in this way immediately provides a clear idea of what the ...
12
votes
14answers
15k views
Hibernate Annotations - Which is better, field or property access?
This question is somewhat related to http://stackoverflow.com/questions/305880/hibernate-annotation-placement-question.
But I want to know which is better? Access via properties or access via fields?
...
11
votes
3answers
440 views
Why are annotations under Android such a performance issue (slow)?
I'm the lead author of ORMLite which uses Java annotations on classes to build database schemas. A big startup performance problem for our package turns out to be the calling of annotation methods ...
11
votes
1answer
257 views
Can i have a negative value as constant expression in Scala?
I have an Java-Annotation that return a double value:
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface DoubleValue {
double value();
}
When i try to attach the ...
11
votes
5answers
6k views
Why is javac failing on @Override annotation
Eclipse is adding @Override annotations when I implement methods of an interface. Eclipse seems to have no problem with this. And our automated build process from Cruise Control seems to have no ...
11
votes
15answers
6k views
Java Getters and Setters
Is there a better standard way to create getters and setters in Java?
It is quite verbose to have to explicitly define getters and setters for each variable. Is there a better standard annotations ...
11
votes
4answers
824 views
java annotations: library to override annotations with xml files
Java has annotations and that is good. However, some developers feel that it is best to annotate code with metadata using xml files - others prefer annotations but would use metadata to override ...
11
votes
3answers
1k views
What are the Pros/Cons of Annotations (non-compiler) compared to xml config files
When I look at Java frameworks like Hibernate, JPA, or Spring, I usually have the possibility to make my configuration via an xml-file or put annotations directly in my classes.
I am cosistently ...
11
votes
4answers
2k views
Java: Should I add an @Override annotation when implementing abstract methods?
When overriding a virtual method in Java, use of the @Override annotation is recommended, but what if I implement an abstract method? Should I use @Override then as well?
11
votes
5answers
23k views
Spring-MVC Problem using @Controller on controller implementing an interface
I'm using spring 2.5 and annotations to configure my spring-mvc web context. Unfortunately, I am unable to get the following to work. I'm not sure if this is a bug (seems like it) or if there is a ...
10
votes
5answers
1k views
Best practices when using Spring 3 annotations
I'm looking for some best practices when using Spring 3 annotations.
I'm currently moving to Spring 3 and from what I've read so far I see a lot of accent placed on using annotations and moving away ...
10
votes
3answers
767 views
Should I use JavaDoc deprecation or the annotation in Java?
There are at the moment, two ways to mark code as depreacted in java.
Via JavaDoc
/*
* @deprecated
*/
Or as an annotation:
@Deprecated
This is my problem - I find it a bit too much to declare ...
10
votes
1answer
414 views
Annotating constructor parameters in Scala
Annotating constructor parameters seems to do nothing when compiled to bytecode. I get no compiler warnings either.
The following works. getAnnotations for the name field returns ...
10
votes
3answers
696 views
Use cases for implementing annotations
What are valid use cases for implementing annotations?
When designing primarily annotation based configuration systems I occasionally need to create classes which implement annotations for code ...
10
votes
1answer
669 views
Is there a comprehensive example or tutorial for iBATIS 3 with annotations?
Is there a comprehensive example or tutorial for iBATIS 3 with annotations?
I am specifically interested in moving away from an XML-based mapper configuration to using pure Java annotations where the ...
10
votes
3answers
989 views
Consolidate annotations on a zoomed MKMapView
There are a number of bad ways to go about what I want to do, but this seems like one of those cases of "there must be a better way".
I am using an MKMapView in an iPhone app that displays a number ...