Hi, I have jsonb data type stored in postgres. I want to retrieve a field from jsonb data using hibernate. My hibernate query is correctly formed and when I execute it directly on postgre, it runs correctly and gives me the result. But when I execute through HIbernate, I get bind error.
Hibernate 5.2
Postgre 9.4
Hibernate does not offer a JSON types because JSON is not supported by all DB dialects supported by Hibernate. However, Hibernate Types is actively maintained, and it works like a charm, so there’s no reason to complain about not having it integrated in Hibernate Core.
More, Hibernate is open-source, so if you wish a lot of things regarding it, you should start contributing, like I do. I develop Hibernate Types in my own free time. So, what holds you back?