| In contrast to version 5.0.7, on 5.1.0 my JPA bootstrap fails reporting multiple converters being applicable to a generic field of an entity:
AbstractPersistable uses generics bound to Serializable to define a primary key:
@MappedSuperclass
public abstract class AbstractPersistable<PK extends Serializable> implements Persistable<PK> {
private static final long serialVersionUID = -5554308939380869754L;
@Id @GeneratedValue private PK id;
…
The converters reported are referring to JSR-310 date time types:
@Converter(autoApply = true)
public class LocalDateConverter implements AttributeConverter<LocalDate, Date> { … }
Steps to reproduce:
|