|
When specifying a converter on an ElementCollection property (Spec: "The Convert annotation may be applied to a basic attribute or to an element collection of basic type (in which case the converter is applied to the elements of the collection)") the generated mapping is missing the proper column type. The code handling this case is unimplemented in CollectionPropertyHolder:
@Override
protected AttributeConversionInfo locateAttributeConversionInfo(String path) {
return null;
}
called from resolveElementAttributeConverterDefinition().
|