I’m migrating Hibernate from 5.6.10
to 6.1.7
(as a part of Spring Boot 3 upgrade) and can’t seem to find a suitable replacement for the hydrate
method for intercepting the Resultset and performing a custom unmarshalling (via extending SingleTableEntityPersister
which ultimately extends AbstractEntityPersister
)
It’s surprising that version 6.1.7
has kept the dehydrate
method but not the hydrate
method.
Thanks for any pointers.