Hi all,
I am missing something bigtime... I just downloaded Annotations 3.2 and the Core 3.2. I'm trying to implement the basic example from the pdf doc:
@Entity
public class Flight implements Serializable {
Long id;
@Id
public Long getId() { return id; }
public void setId(Long id) { this.id = id; }
}
I cannot locate @Id anywhere in the jars. Entity is found, but Table takes different parameters. What's going on (besides senility!). I'm obviously looking in the wrong jar, but I can't seem to locate these annotations anywhere.
Thanks for helping!
Chris
|