JPA Interfaces explained with code samples
In my earlier article, we had learnt how to create a basic JPA application. In this article, I will be explaining […]
In my earlier article, we had learnt how to create a basic JPA application. In this article, I will be explaining […]
In this article, I will be explaining how to create a standalone JPA application. that saves data to a database […]
In this article, I will be giving you an Introduction to JPA.. I will be explaining what was the need […]
In my earlier article, I gave an introduction to Hibernate Collection mapping. In this article, I will be covering how […]
In this article, I will be going over how Hibernate Collection Mapping works What is Collection Mapping? Sometimes, you will […]
Java is inherently an object-oriented language. Databases are relational in nature. JPA/Hibernate support Inheritance strategies. These allow mapping Java class […]
HQL stands for Hibernate Query language. It is similar to SQL, but instead of the database table and column names, […]
Hibernate provides as feature called Automatic Dirty checking whereby changes to a persistent object are automatically saved to the database […]
In this article, I will be explaining what is Hibernate SessionFactory and how it works. Consider the following code that […]
Hibernate supports associations that help you to model the relationship between database tables. In this article, I will be covering […]