39
votes
20answers
17k 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 …
15
votes
5answers
289 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 …
14
votes
7answers
2k 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 …
12
votes
10answers
525 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?
12
votes
5answers
704 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 …
9
votes
8answers
585 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 …
8
votes
3answers
180 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 …
8
votes
4answers
924 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 …
7
votes
7answers
205 views
Is it possible to ignore certain unit tests?
Hi, I'm currently working on a project which uses JUnit4 extensively throughout all the modules. We're using Maven2 to build the project and Hudson for continuous integration. The project is built and …
6
votes
5answers
207 views
Maintainability of Java annotations?
My project is slowly implementing Java annotations. Half of the developers - myself included - find that doing anything complex with annotations seems to add to our overall maintenance burden. The …
6
votes
5answers
389 views
Overriding line number in generated Java source
Is there any way to override the line numbers in Java (e.g., by using some kind of preprocessor directive)?
I am "compiling" a high-level language, down to Java byte code using Janino. I need …
6
votes
8answers
552 views
Cool uses of Attributes or Annotations (CLR or Java)?
What are some cool applications for custom attributes in CLR/C# code that you've done or heard about? Also interesting new uses of the standard attributes is also ok!
Edit: Since Java's annotations …
6
votes
6answers
435 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 …
5
votes
11answers
416 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 …
5
votes
1answer
460 views
Setup Java 6 annotation processing configuration for eclipse compiler with maven
What's the best way to setup the eclipse project compiler configuration for Java 6 annotation processors?
My solution is to setup the org.eclipse.jdt.apt.core.prefs and factorypath files manually. …
