This article describes how transactions are handled and managed in Hibernate Framework. We will also look into an EntityManager interface to see how can it be helpful in ensuring data […]
From the previous article, we know that transactions can interfere with each other, which can adversely impact what they’re trying to accomplish, or rather what the code author tried to […]
This article will introduce you to the idea of a transaction which is frequently seen in Hibernate and software systems overall. You’ll understand why it’s so important and recognize the […]
This article and code behind it, show how to assemble a standalone, fully functional application, which as one of its main points utilizes Hibernate and Spring. You can take a […]
This article gives an overview of how to map a one to one entity relation with Hibernate JPA. After reading it you should know how to use JPA annotations to […]
This is an extension to the previous post about unidirectional many to one mapping. Please ensure to get familiar with it before you move to bi-directionality. This post will give […]
This article gives a detailed overview of a unidirectional many to one JPA entity mapping. You’ll learn the benefits and potential issues associated with such an entity relation mapping. We’ll […]
The following article shows how to configure logging with log4j2 and Hibernate. Enabling logging helps visualize SQL statements which Hibernate uses to communicate with the database. It’s a great way […]
After reading this article you should be aware of how to make an entity immutable with the Hibernate framework. You’ll also learn why it is important and what you need […]
After going through this tutorial you’ll know how to configure Hibernate JPA with Spring. You’ll learn how to set it up using persistence.xml, as well as fully xml-less. Please remember, […]