Hibernate Tips: Map an Unidirectional One-to-Many Association Without a Junction Table
|

Hibernate Tips: Map an Unidirectional One-to-Many Association Without a Junction Table

Hibernate Tips is a series of posts in which I describe a quick and easy solution for common Hibernate questions. If you have a question for a future Hibernate Tip, please leave a comment below. Question: My table model contains a normal one-to-many association using a foreign key column on the table that represents the…

Hibernate Tips: Get the SQL Connection used by your Hibernate Session

Hibernate Tips: Get the SQL Connection used by your Hibernate Session

Hibernate Tips is a series of posts in which I describe a quick and easy solution for common Hibernate questions. If you have a question for a future Hibernate Tip, please leave a comment below. Question: We’re using Hibernate in our application, and we now need to implement a reporting use case for which I…

5 Reasons and 101 Bugfixes – Why You Should Use Hibernate 5.3
|

5 Reasons and 101 Bugfixes – Why You Should Use Hibernate 5.3

Hibernate 5.3 is available for a little more than 3 months now, and last week, the team released the 3rd maintenance release. So, it’s about time to take a closer look at the new version. In addition to more than 100 bug fixes, Hibernate 5.3 includes a few features and improvements that might motivate you to…

Hibernate Tips: How to Call a Function that returns a SYS_REFCURSOR
|

Hibernate Tips: How to Call a Function that returns a SYS_REFCURSOR

Hibernate Tips is a series of posts in which I describe a quick and easy solution for common Hibernate questions. If you have a question for a future Hibernate Tip, please leave a comment below. Question: We are using an Oracle database, and I need to call a function that returns an SYS_REFCURSOR. I tried…