In programming, annotations are used to add information to a code element which cannot be expressed by the type system.

learn more… | top users | synonyms (1)

144
votes
11answers
30k 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 ...
108
votes
9answers
31k 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 ...
89
votes
9answers
64k 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 ...
87
votes
4answers
26k views

Difference between <context:annotation-config> vs <context:component-scan>

I'm learning Spring 3 and I don't seem to grasp the functionality behind <context:annotation-config> and <context:component-scan>. From what I've read they seem to handle different ...
71
votes
16answers
37k 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 ...
70
votes
7answers
20k 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 ...
68
votes
4answers
32k views

What's the difference between @Component, @Repository & @Service annotations in Spring?

Can @Component, @Repository & @Service annotations be used interchangeably in Spring or do they provide any particular functionality besides acting as a notation device? In other words, if I have ...
68
votes
14answers
27k 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 ...
67
votes
1answer
3k views

How to make annotation like highlighting, strikethrough, underline, draw, add text, etc in android for a pdf viewer?

Many applications like RepliGo, Aldiko, Mantano, ezPdf in android market make this type of annotation in their pdf viewer shown in the below image. I tried in many ways to implement this annotation ...
58
votes
5answers
16k 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 affect the program at run time? What are their typical usages? ...
55
votes
10answers
11k 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?
54
votes
6answers
31k views

Why does Eclipse complain about @Override on interface methods?

I have an existing project that uses @Override on methods that override interface methods, rather than superclass methods. I cannot alter this in code, but I would like Eclpse to stop complaining ...
47
votes
12answers
62k 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?
45
votes
3answers
30k 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?
44
votes
3answers
20k views

What is the difference between @Inject and @Autowired in Spring Framework? Which one to use under what condition?

I am going through some blogs on SpringSource and in one of the blog author is using @Inject and I suppose he can also use @Autowired Here is the piece of code: @Inject private CustomerOrderService ...
43
votes
14answers
18k 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 ...
38
votes
2answers
41k 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 ...
37
votes
4answers
13k 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 ...
36
votes
3answers
15k 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 ...
34
votes
4answers
11k 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 ...
31
votes
4answers
5k 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 ...
31
votes
4answers
5k 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 ...
31
votes
2answers
8k 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 ...
30
votes
4answers
2k 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 ...
29
votes
6answers
16k 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 ...
29
votes
8answers
1k 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
11answers
4k 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 ...
26
votes
1answer
839 views

Can I use expressions in Apache Shiro security annotations?

I've been doing some comparisons between Apache Shiro and Spring Security - I'm really loving the security model that Shiro uses and believe it to be far cleaner that Spring Security. However, one ...
25
votes
4answers
13k views

Bug with Override annotations in Eclipse

I have a annoying problem with @Override annotations in Eclipse. Often when i import working projects on a new PC, Eclipse marks some of the @Override annotations as wrong. If i remove the annotations ...
25
votes
3answers
19k views

JPA Criteria Tutorial

I've been trying to find a JPA Criteria API tutorial but haven't been much successful. Do you know about any for beginners? I'd like to start using it in an Java5/Maven app to build complex search ...
24
votes
17answers
30k 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? ...
24
votes
4answers
14k views

How to delete all Annotations on a MKMapView

Is there a simple way to delete all the annotations on a map without iterating through all the displayed annotations in Objective-c?
24
votes
6answers
34k views

Do I need <class> elements in persistence.xml?

I have very simple persistance.xml file: <?xml version="1.0" encoding="UTF-8"?> <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" ...
24
votes
3answers
951 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 ...
24
votes
5answers
4k views

What's the point of package annotations?

I understand the purpose of class annotations, thanks to How and where are Annotations used in Java?. What is the purpose of package annotations, as described in this blog post and §7.4.1.1 of ...
23
votes
2answers
17k views

JsonMappingException: No suitable constructor found for type [simple type, class ]: can not instantiate from JSON object

I am getting the following error when trying to get a JSON request and process it> org.codehaus.jackson.map.JsonMappingException: No suitable constructor found for type [simple type, class ...
23
votes
3answers
4k 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 ...
23
votes
4answers
10k views

The drawbacks of annotation processing in Java?

I am considering starting a project which is used to generate code in Java using annotations (I won't get into specifics, as it's not really relevant). I am wondering about the validity and usefulness ...
22
votes
15answers
13k 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 ...
22
votes
3answers
3k 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 ...
21
votes
2answers
13k views

Init method in Spring Controller (annotation version)

I'm converting a controller to the newer annotation version. In the old version I used to specify the init method in springmvc-servlet.xml using: <beans> <bean id="myBean" class="..." ...
21
votes
2answers
13k views

java custom annotation: make an attribute optional

I defined my own custom annotation @Target(value={ElementType.METHOD, ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface MyCustomAnnotation { Class<?> myType(); } ...
21
votes
1answer
502 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 ...
20
votes
5answers
4k views

Where should I put @Transactional annotation: at an interface definition or at an implementing class?

The question from the title in code: @Transactional (readonly = true) public interface FooService { void doSmth (); } public class FooServiceImpl implements FooService { ... } vs public ...
20
votes
6answers
8k 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 ...
19
votes
4answers
2k views

how lombok works?

I met lombok today. cool~~ BTW I'm very anxious to know how it works. A Java Geek Article give some clue but it's not perfect clear for me. Java 6 removes apt and make javac able to manage ...
19
votes
2answers
7k views

@Column(s) not allowed on a @ManyToOne property

I have a JPA entity with a property set as @ManyToOne @Column(name="LicenseeFK") private Licensee licensee; But when I deploy on JBoss 6 the application throws an error saying: ...
19
votes
4answers
4k 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?
19
votes
4answers
3k 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 ...
18
votes
3answers
13k views

@Override annotation error (android prefs)

When I was trying to use this code to enable preferences into my app import android.app.Activity; import android.content.SharedPreferences; import android.os.Bundle; import ...

1 2 3 4 5 77