HHH-10222 - AttributeConverter not applied to @ElementCollection
(cherry picked from commit 2db30fd455
)
This commit is contained in:
parent
46751f4f7f
commit
7cbb8570c4
|
@ -328,6 +328,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