HHH-17460 - Ongoing JPA 32 work

This commit is contained in:
Steve Ebersole 2024-03-12 16:55:51 -05:00
parent 808544579c
commit 34331fcb29
1 changed files with 6 additions and 0 deletions

View File

@ -394,6 +394,12 @@ public class PropertyContainer {
return true; return true;
} }
if ( memberDetails.getType().determineRawClass().isImplementor( Class.class ) ) {
// specialized case for @Basic attributes of type Class (or Class<?>, etc.).
// we only really care about the Class part
return true;
}
return false; return false;
} }