-
Notifications
You must be signed in to change notification settings - Fork 38.8k
Closed
Labels
in: dataIssues in data modules (jdbc, orm, oxm, tx)Issues in data modules (jdbc, orm, oxm, tx)type: bugA general bugA general bug
Milestone
Description
Given an entity class
@Entity // could be @Embeddable etc.
@Access(AccessType.PROPERTY)
class Foo {
String bar;
void setBar(String bar) { … }
}This type is usable in standard Hibernate, as the package-protected setBar(…) will be available to Hibernate. In a native image, that method is not available as PersistenceManagedTypesBeanRegistrationAotProcessor calls BindingReflectionHintsRegistrar.registerReflectionHints(…) which only considers public methods.
Metadata
Metadata
Assignees
Labels
in: dataIssues in data modules (jdbc, orm, oxm, tx)Issues in data modules (jdbc, orm, oxm, tx)type: bugA general bugA general bug