Example of GraphQL with Quarkus
In previous posts, we saw an example of using GraphQL with Spring and Netflix's DGS. Today, in this Example of GraphQL with Quarkus, we bring the same example, but it's…
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 previous posts, we saw an example of using GraphQL with Spring and Netflix's DGS. Today, in this Example of GraphQL with Quarkus, we bring the same example, but it's…
In this article, "Reactive Application with WebFlux and Spring Data Reactive," we will see how to build a fully reactive Spring Boot application using WebFlux, which was introduced with Spring…
In this post, we are going to show an example of a Many-to-Many relationship in Hibernate. We will demonstrate how to map and use JPA through Hibernate to achieve this…
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 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.…
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…
To test our Spring Boot app with Spring Data, we often use an embedded in-memory database like H2. Although this is a very valid approach on occasion, we may want…
One of the needs we usually have when working with SQL databases is to use an independent database to have a set of tests. That's the goal of this entry…