HHH-10222 - AttributeConverter not applied to @ElementCollection
This commit is contained in:
parent
2a99b256b8
commit
2db30fd455
|
@ -333,6 +333,11 @@ public class SimpleValueBinder {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( key && property.isAnnotationPresent( MapKeyEnumerated.class ) ) {
|
||||||
|
LOG.debugf( "Skipping AttributeConverter checks for map-key annotated as MapKeyEnumerated [%s]", property.getName() );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if ( isAssociation() ) {
|
if ( isAssociation() ) {
|
||||||
LOG.debugf( "Skipping AttributeConverter checks for association attribute [%s]", property.getName() );
|
LOG.debugf( "Skipping AttributeConverter checks for association attribute [%s]", property.getName() );
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue