eg (wrong):
@OneToMany private Listfoos; public List getFoos() { return foos; } public void setFoos(List foos) { this.foos = foos; }
eg (right):
private Listfoos; @OneToMany public List getFoos() { return foos; } public void setFoos(List foos) { this.foos = foos; }
Great.
ReplyDeleteThis solve the problem I have.
Thank you very much for this solution.