This is the entity class causing a mapping error: {code} @Entity public class Customer implements Serializable { @ElementCollection(fetch = EAGER) @CollectionTable(name = "customer_color", joinColumns = @JoinColumn(name = "customer_fk", nullable = false), uniqueConstraints = @UniqueConstraint(columnNam...
|