Welcome to the Hibernate community newsletter in which we share blog posts, forum, and StackOverflow questions that are especially relevant to our users.
Articles
In this article, you can find various ways of sorting entities with JPA and Hibernate.
Hibernate 5.2.18 and 5.3.1 adds support for IN clause parameter padding, which allows you to increase the statement cache hit rate.
This tutorial shows how to use various JPQL String-based functions.
In this article, you will find a simple tagging implementation that uses JPA and Hibernate.
This article explains how JPA transactions work, and why you need a JPA transaction for writing data.
MariaDB 10.3 was released, and it adds support for database sequences. This is a great feature since, when using JPA and Hibernate,
the SEQUENCE
identifier generator is
the most efficient entity identifier strategy.
Time to upgrade
There were several Hibernate project releases since the last newsletter:
-
Hibernate ORM 5.3.1
-
Hibernate Search 5.10.1, 5.9.2, and 5.6.5
Questions and answers
-
org.hibernate.AnnotationException - Use of @OneToMany or @ManyToMany targeting an unmapped class
-
An efficient way to initialize a list of Hibernate proxies linked to different objects
-
How to model a one-to-one relationship in JPA when the “parent” table has a composite PK?
-
What is this
spring.jpa.open-in-view=true
property in Spring Boot? -
@IdClass Produces 'Identifier of an Instance was Altered' with JPA and Hibernate
-
Get generated id from a sequence before hibernate saves the object
-
How to remove child objects from a @ManyToMany relation with lots of children in JPA and Hibernate