Hibernate
-
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 » -
Core Java
@MapsId Annotation Example
1. Introduction The @MapsId annotation provided by JPA 2.0 is used to map a foreign key in a one-to-one or…
Read More » -
Core Java
Hibernate @TimeZoneStorage Example
1. Introduction Hibernate 6 introduces TimeZoneStorage annotation that specifies how the time zone information of a persistent property or field…
Read More »