When generating a project with Native image and Spring Data JPA, the following snippet is contributed:
hibernate {
enhancement {
enableAssociationManagement = true
}
}
The enableAssociationManagement property is deprecated. It should rather be:
hibernate {
enhancement {
associationManagement = true
}
}