Replacement for `hydrate` in Hibernate 6.1

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.

Hibernate ORM 6 changed how types read/write data and the querying infrastructure, so there is not a simple migration possible. What is it that you want to customize? Chances are, you can easily do that by applying a custom converter or user type.