Hi the list !
I'm using annotation and the last GA version.
I'd like to have an one to many association like that :
Code:
public class A {
@Basic
@OneToMany
private Collection<String> names = new ArrayList<String>();
}
It look like simple and use to work with some beta version of Hibernate annotation I used (I can't remember witch one but I could dig on CVS)
I got that exeption at initialisation time, the application don't even start.
Code:
Use of @OneToMany or @ManyToMany targeting un unmapped class A.names[java.lang.String]
I'm confused (because it used to work) and need your help...
Thenks !