HHH-18384 Preserving order of @Id annotated elements while adding to list before other elements

This commit is contained in:
Čedomir Igaly 2024-11-17 12:46:00 +01:00
parent 83dbfdc0fe
commit 38da18b3bd
1 changed files with 4 additions and 5 deletions

View File

@ -593,7 +593,7 @@ public class PropertyBinder {
MetadataBuildingContext context) {
int idPropertyCounter = 0;
for ( MemberDetails property : propertyContainer.propertyIterator() ) {
idPropertyCounter += addProperty( propertyContainer, property, elements, context );
idPropertyCounter = addProperty( propertyContainer, property, elements, context, idPropertyCounter );
}
return idPropertyCounter;
}
@ -602,20 +602,19 @@ public class PropertyBinder {
PropertyContainer propertyContainer,
MemberDetails property,
List<PropertyData> inFlightPropertyDataList,
MetadataBuildingContext context) {
MetadataBuildingContext context, int idPropertyCounter) {
// see if inFlightPropertyDataList already contains a PropertyData for this name,
// and if so, skip it...
for ( PropertyData propertyData : inFlightPropertyDataList ) {
if ( propertyData.getPropertyName().equals( property.resolveAttributeName() ) ) {
checkIdProperty( property, propertyData );
// EARLY EXIT!!!
return 0;
return idPropertyCounter;
}
}
final ClassDetails declaringClass = propertyContainer.getDeclaringClass();
final TypeVariableScope ownerType = propertyContainer.getTypeAtStake();
int idPropertyCounter = 0;
final PropertyData propertyAnnotatedElement = new PropertyInferredData(
declaringClass,
ownerType,
@ -628,7 +627,7 @@ public class PropertyBinder {
// before any association by Hibernate
final MemberDetails element = propertyAnnotatedElement.getAttributeMember();
if ( hasIdAnnotation( element ) ) {
inFlightPropertyDataList.add( 0, propertyAnnotatedElement );
inFlightPropertyDataList.add( idPropertyCounter, propertyAnnotatedElement );
handleIdProperty( propertyContainer, context, declaringClass, ownerType, element );
if ( hasToOneAnnotation( element ) ) {
context.getMetadataCollector()