Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!
🐻 Медведи — известные мастера организации запасов. Они прячут мёд и ягоды в разных местах, чтобы...
Добро пожаловать в продолжение нашего приключения в зоопарке Hibernate! Сегодня мы сосредоточимся на...
Добро пожаловать в Hibernate Zoo! Сегодня мы прогуляемся по волшебному миру запросов к базе данных....
A partir de uma certa versão do Spring Boot 3, utilizando JPA o Hibernate adicionou os seguintes...
Introduction Traditionally, fetching large amounts of data can strain memory resources, as...
A low-code platform seeks to minimize the amount of hand-written code. The core tools it can rely on...
Table of Contents Introduction My Initial Reaction - "These People are Mad!!" Then Came...
Добро пожаловать в Hibernate Zoo! Сегодня у нас увлекательное представление: встречайте Persistence...
I've originally written this article in Russian. So, if you're native speaker, you can read it by...
Introduction In this post, we'll explore how projections work in Spring Data JPA, discuss...
Fixing "No Serializer Found" Error in Hibernate If you're working with Hibernate in a...
If you're like me, you expect that in 2024 you can close the lid on your laptop and your computer...
🚀 Which Direction to Use for Each Relationship Type in Hibernate? Choosing unidirectional...
Introduction: Turbocharge Your Database Performance What if you could slash your database...
By default, Spring Data JPA loads related data lazily, which can cause the N+1 problem — one query...
Intro A single utility class for writing HQL in more readable way. Simplifies writing...
If you're diving into Java development and wondering how to manage data between your Java...
The annotation @IdClass(PaymentId.class) is used in JPA (Java Persistence API) to define a composite...
A small tip about writing model class in Kotlin for one table entity. Let's assume that we have a...
CodeQuest: Build an Adventure Game with Java, JDBC &...
Java Persistence API (JPA) is a powerful tool for managing data persistence in Java applications....
What Is the N+1 Problem? The N+1 SELECT problem happens when JPA (or Hibernate) executes...
Windows Hibernate automate 2025 Giúp người dùng vào Hibernate mode thuận tiện hơn. Không phụ thuộc...
Most Java developers default to using surrogate keys (or auto-generated id fields) for their...
Сегодня мы познакомимся с двумя знаменитыми обитателями Hibernate Zoo: Жадным Гиппопотамом (EAGER...
🚀 Can You Mix Unidirectional and Bidirectional @OneToMany & @ManyToOne? ✅ Yes, you...
Understanding @Table(name = "payments") in Depth The @Table(name = "payments") annotation...
Data is the hardest part of enterprise software. You can refactor code or redeploy services, but if...
Unidirectional One-to-Many and Many-to-One using Department and Employee Tables I'll show...
What is a bidirectional relationship in relational database model? let's take a quick look - Suppose...