Steve Ebersole commented on an issue
Hibernate ORM / New Feature HHH-8529
AttributeConverter not applied to @ElementCollection
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...