Skip to content

Commit c28a0d5

Browse files
committed
Add missing hints for Hibernate @TenantId
Closes gh-32967
1 parent 61d045c commit c28a0d5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

spring-orm/src/main/java/org/springframework/orm/jpa/persistenceunit/PersistenceManagedTypesBeanRegistrationAotProcessor.java

+8
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,14 @@ private void contributeHibernateHints(RuntimeHints hints, @Nullable ClassLoader
219219
ReflectionUtils.doWithMethods(managedClass, method -> registerForReflection(reflection,
220220
AnnotationUtils.findAnnotation(method, idGeneratorTypeClass), "value"));
221221
}
222+
223+
Class<? extends Annotation> attributeBinderTypeClass = loadClass("org.hibernate.annotations.AttributeBinderType", classLoader);
224+
if (attributeBinderTypeClass != null) {
225+
ReflectionUtils.doWithFields(managedClass, field -> registerForReflection(reflection,
226+
AnnotationUtils.findAnnotation(field, attributeBinderTypeClass), "binder"));
227+
ReflectionUtils.doWithMethods(managedClass, method -> registerForReflection(reflection,
228+
AnnotationUtils.findAnnotation(method, attributeBinderTypeClass), "binder"));
229+
}
222230
}
223231

224232
@Nullable

0 commit comments

Comments
 (0)