Example of OneToMany Relationship in Hibernate
In this post, we are going to show an example of a OneToMany relationship in Hibernate, where we will see how we can map this type of relationship using JPA.…
Our team work realy hard to produce quality content on this website and we noticed you have ad-blocking enabled. Advertisements and advertising enable us to continue working and provide high-quality content.
In this post, we are going to show an example of a OneToMany relationship in Hibernate, where we will see how we can map this type of relationship using JPA.…
Relational databases do not have a built-in way to handle table inheritance. To address this limitation, JPA provides a set of inheritance strategies with Hibernate that guide us towards achieving…
In this article, we will explain how does dependency injection work in Spring?. We will also see how we can use it in Spring applications. What is Inversion of Control…
In this new Refactorizando article, we will see the Soft Delete in Hibernate and Spring Boot with an example, using annotations. We will use @SQLDelete for this purpose. What is…
In this article using FetchMode in Hibernate with Spring Data, we will explore the different ways to retrieve data using annotations. In a previous article, we learned that using Join…
In a previous article, we saw that to avoid the LazyInitializationException issue, we can use Join Fetch in JPA with Spring Data. Using this option helps us maintain good application…
WebFlux was born in Spring 5 as a stack to provide Spring with non-blocking functionality and reactive programming. In this WebFlux Guide in Spring Boot, we will cover the basic…
The recent release of VMware's Spring Boot 3, along with the new version of Spring Framework 6, brings a series of significant and disruptive improvements compared to their previous versions,…
In this post, we are going to see the usage of @MockBean vs @Mock in Spring Boot. When creating the testing part of our Spring Boot applications, we sometimes wonder…
In this new post, we will delve into some Spring theory and explore the different types of Spring Bean scopes. The scope of a bean defines its lifecycle and visibility…