Hibernate
-
Core Java
PostgreSQL Hibernate 6 JSON Example
1. Introduction Hibernate 6 enhances the Object-Relational Mapping(ORM) framework by supporting JSON Data types. In this example, I will create…
Read More » -
Core Java
Hibernate Envers – Extending Revision Info with Custom Fields
Hibernate Envers provides automatic auditing of entity changes in Hibernate-based applications. By default, Envers tracks entity modifications with revision numbers…
Read More » -
Enterprise Java
Fixing Hibernate QueryParameterException: No Argument for Ordinal Parameter
This article will explore how to fix the Hibernate QueryParameterException: No Argument for Ordinal Parameter, understand its root cause, reproduce…
Read More » -
Core Java
Java Hibernate OffsetDateTime Mapping
The OffsetDateTime class in Java represents a date-time with a time zone offset from UTC/Greenwich, which can be crucial when…
Read More » -
Core Java
Hibernate Group-By Criteria API Example
In modern Java applications, managing data through Hibernate is a common practice, especially when working with complex queries. One of…
Read More » -
Core Java
H2 DESC Command Alternatives
The H2 Database is a lightweight, fast, and open-source relational database management system, often used for embedded or in-memory database…
Read More » -
Enterprise Java
Store Arrays & Collections In JSON & XML In Hibernate
Hibernate is a powerful and flexible ORM (Object-Relational Mapping) framework that simplifies the interaction between Java applications and relational databases.…
Read More » -
Enterprise Java
Tear Down HSQLDB Database After Tests
Testing is a critical aspect of software development, and maintaining a clean test environment ensures accurate and reliable results. This…
Read More » -
Core Java
EntityManagerFactory vs SessionFactory
In the world of Java application development, interacting with databases efficiently is critical. Two key components often come into play…
Read More »