Steve Ebersole commented on an issue
Hibernate ORM / Bug HHH-8529
@Converter doesn't work with @ElementCollection and @CollectionTable
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...