Saga Pattern with Quarkus and Kafka
In this new post, we will see a practical example of the Saga Pattern with Quarkus and Kafka. Kafka, a distributed platform, enables asynchronous messaging between services with a set…
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 new post, we will see a practical example of the Saga Pattern with Quarkus and Kafka. Kafka, a distributed platform, enables asynchronous messaging between services with a set…
In this article, let's explore various methods to convert Set to List and List to Set. In the following examples, we will see how we can achieve this using Java,…
In this article, we will see the differences between ZonedDateTime and OffsetDateTime, both introduced in the Java 8 API. We will try to see and clarify which one to use…
In this article, we will see how we can perform pagination and sorting with Spring Data. Both pagination and sorting can be easily done using Spring Data. Maven Dependency for…
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…