In programming, annotations are used to add information to a code element which cannot be expressed by the type system.
67
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 ...
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 ...
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?
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 ...
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 ...
12
votes
1answer
3k views
How to determine if an annotation is inside of MKPolygonView (iOS)
I'm trying to calculate if a specific annotation(like the blue circle of the user location) or a MKPinAnnotation is inside an MKPolygon layer on the mapview.
Some ideas?
Thanks in advance
1
vote
1answer
2k views
JFreechart draw arc on chart
I have 2 questions
1)I am trying to draw an arc on an XYplot using the shape annotation. I used the XYLine annotation to draw a line and I want the arc to start where the line ends. I am having some ...
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 ...
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?
...
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 ...
10
votes
6answers
22k views
how to make a composite primary key (java persistence annotation)
how to make it so that the table user_roles defines the two columns (userID, roleID) as a composite primary key. should be easy, just can't remember/find.
in userdao
@ManyToMany(fetch = ...
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 ...
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 ...
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" ...
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 ...
7
votes
8answers
4k views
What is the use of marker interfaces in Java?
When there is nothing to implement in the marker interfaces like Serializable . . what is the use of implementing it?
1
vote
1answer
3k views
JFreechart series tool tip above shape annotation
I have an XYPlot on which are series and a couple of dynamically added shape annotations with no fill (hence each of the series points are visible). Is it possible to display the series tool tips(that ...
12
votes
3answers
8k views
How to mix inheritance strategies with JPA annotations and Hibernate?
According to the Hibernate Reference Documentation it should be possible to mix different inheritance mapping strategies when using Hibernate's XML-Metadata:
...
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 ...
10
votes
3answers
11k views
How to use Hibernate @Any-related annotations?
Could someone explain to me how Any-related annotations (@Any, @AnyMetaDef, @AnyMetaDefs and @ManyToAny) work in practice. I have a hard time finding any useful documentation (JavaDoc alone isn't very ...
143
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 ...
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 ...
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 ...
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 ...
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?
24
votes
3answers
948 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 ...
8
votes
2answers
6k views
attribute dependent on another field
In a model of my ASP.NET MVC application I would like validate a textbox as required only if a specific checkbox is checked.
Something like
public bool retired {get, set};
...
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 ...
15
votes
1answer
13k views
Custom 404 using Spring DispatcherServlet
I've set up web.xml as below. I also have an annotation-based controller, which takes in any URL pattern and then goes to the corresponding jsp (I've set that up in the -servlet.xml). However, If I ...
14
votes
4answers
13k views
How to find annotated methods in a given package?
I have a simple marker annotation for methods (similar to the first example in Item 35 in Effective Java (2nd ed)):
/**
* Marker annotation for methods that are called from installer's
* ...
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 ...
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?
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 ...
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 ...
11
votes
5answers
10k views
Create Annotation instance with defaults, in Java
How can I create an instance of the following annotation (with all fields set to their default value).
@Retention( RetentionPolicy.RUNTIME )
public @interface Settings {
String ...
18
votes
3answers
11k views
Java, What does @Override mean?
public class NaiveAlien extends Alien
{
@Override
public void harvest(){}
}
I was trying to understand my friend's code, and I do not get the syntax, @Override in the code. What does that ...
6
votes
1answer
11k views
Mapping enum types with Hibernate Annotations
I have an enum type on my Java model which I'd like to map to a table on the database. I'm working with Hibernate Annotations and I don't know how to do that. Since the answers I search were rather ...
5
votes
1answer
2k views
@PreDestroy never called on @ViewScoped
I have a @ViewScoped bean that has a method with an @PreDestroy annotation that should make sure some remote connections are closed. However, the method is not called when the user navigates away.
Is ...
3
votes
2answers
575 views
How to reuse fieldlength in form, validation and ddl?
I'm working on an Spring application with lots of input forms. I'd like to reuse the field length in the UI-form, validation and JPA annotations. Is there an elegant way to solve this. My solution at ...
8
votes
4answers
21k views
How can I get access to the HttpServletRequest object when using Java Web Services
I'm using Java 6, Tomcat 6, and Metro. I use WebService and WebMethod annotations to expose my web service. I would like to obtain information about the request. I tried the following code, but wsCtxt ...
6
votes
5answers
3k views
show another view when map annotation are clicked
I have a map with only one annotation.I created a simple class which I want it to show when the user clicks on the annotation.The problem is that when I click on the annotation nothing happens.
Here ...
6
votes
3answers
469 views
Plugging in to Java compilers
I have a post-compilation step that manipulates the Java bytecode of generated classes. I'd like to make life as painless as possible for library consumers, so I'm looking at ways I can make this ...
4
votes
4answers
740 views
what does this mean in c int a:16;? [duplicate]
Possible Duplicate:
What does 'unsigned temp:3' mean?
please what does this notation mean
int a:16;
I found it is code like this and it does compile.
struct name {
...
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 ...
4
votes
2answers
8k views
spring, hibernate and declarative transaction implementation: there is no active transaction
i try to make declarative transaction work.
This is my spring.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
...
16
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 ...
12
votes
2answers
8k views
How is annotation useful in PHP?
How is annotation useful in PHP? and I don't mean PHPDoc generically.
I just want a real-world example or something, I guess.
So, according to @Max's answer: Annotations accomplish the same thing ...
9
votes
5answers
9k views
Hibernate Annotation Placement Question
I've got what I think is a simple question. I've seen examples both ways. The question is - "why can't I place my annotations on the field?". Let me give you an example....
@Entity
...
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 ...
5
votes
3answers
12k views
How can I add xml attributes to jaxb annotated class XmlElementWrapper?
I have a class with a XmlElementWrapper annotation like:
...
@XmlElementWrapper(name="myList")
@XmlElements({
@XmlElement(name="myElement") }
)
private List<SomeType> ...