Skip to content

Commit fc8bbba

Browse files
committed
HHH-17504 - Ongoing JPA 32 work HHH-17350 - Work on hibernate-models, XSD and JAXB HHH-16114 - Improve boot metamodel binding HHH-15996 - Develop an abstraction for Annotation in annotation processing HHH-16012 - Develop an abstraction for domain model Class refs HHH-15997 - Support for dynamic models in orm.xml HHH-15698 - Support for entity-name in mapping.xsd
1 parent 301d639 commit fc8bbba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-core/src/main/java/org/hibernate/boot/model/internal/PropertyBinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ private static boolean alreadyProcessedBySuper(PropertyHolder holder, PropertyDa
738738

739739
private static void handleParentProperty(PropertyHolder holder, PropertyData data, MemberDetails property) {
740740
if ( holder.isComponent() ) {
741-
holder.setParentProperty( property.getName() );
741+
holder.setParentProperty( property.resolveAttributeName() );
742742
}
743743
else {
744744
throw new AnnotationException( "Property '" + getPath( holder, data )

0 commit comments

Comments
 (0)