Mysql
 sql >> Database >  >> RDS >> Mysql

Tentativo illegale di mappare una non raccolta come @OneToMany, @ManyToMany o @CollectionOfElements

L'errore indica che private Lawyer lawyer deve essere una raccolta in quanto è un @OneToMany relazione. Nel Country classe, l'ultima relazione dovrebbe essere

@OneToMany(targetEntity = Lawyer.class, cascade = { CascadeType.ALL }, orphanRemoval = true)
@JoinTable(name = "lawyer_cscd", joinColumns = {
    @JoinColumn(name = "country_code", referencedColumnName = "country_code") }, inverseJoinColumns = {
    @JoinColumn(name = "lawyer_batch_no", referencedColumnName = "lawyer_batch_no") })
private Set<Lawyer> lawyer;
// or a Collection/List/etc.