HHH-17460 - Ongoing JPA 32 work

This commit is contained in:
Steve Ebersole 2024-03-15 13:05:49 -05:00
parent c7699b61b5
commit 8609e461f5
1 changed files with 3 additions and 0 deletions

View File

@ -249,6 +249,9 @@ public class AnnotationMetadataSourceProcessorImpl implements MetadataSourceProc
log.debugf( "Skipping annotated class processing of entity [%s], as it has already been processed", clazz );
}
else {
if ( clazz.getName().endsWith( ".package-info" ) ) {
continue;
}
AnnotationBinder.bindClass( clazz, inheritanceStatePerClass, rootMetadataBuildingContext );
AnnotationBinder.bindFetchProfilesForClass( clazz, rootMetadataBuildingContext );
processedEntityNames.add( clazz.getName() );