This content has been marked as final. 
    
Show                 1 reply
    
- 
        1. Re: ManyToMany Problemtony.herstell1 Jan 26, 2009 9:39 AM (in response to tony.herstell1)@JoinTable(name="event_judges") @ManyToMany(cascade={CascadeType.ALL}) private List<User> judges; @JoinTable(name="event_scorers") @ManyToMany(cascade={CascadeType.ALL}) private List<User> scorers; @JoinTable(name="event_helpers") @ManyToMany(cascade={CascadeType.ALL}) private List<User> helpers;This is a workaround... but I had to eliminate the Embedded List User as this still caused a problem as you cant have two with the same JoinTable name 
