Using ServiceAccount in Kubernetes
ServiceAccount is used in Kubernetes to provide an identity to pods. Every Pod that wants to interact with the API Server must authenticate with a specific ServiceAccount. By default, the…
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.
ServiceAccount is used in Kubernetes to provide an identity to pods. Every Pod that wants to interact with the API Server must authenticate with a specific ServiceAccount. By default, the…
You can find many articles that talk about Coroutines in English in Kotlin, but sometimes it is difficult to understand the real differences with threads. That's why in this article…
When we decided to build a microservices architecture, we chose to use Spring Cloud and Kubernetes as the platform to deploy them. These are good solutions. In this article, "Microservices…
In this article, we will see Guide to MapStruct with Spring Boot, which is a simple mapper for converting one object to another. The MapStruct API provides the necessary functionalities…
In this AOP with Spring Boot (Aspect-Oriented Programming) post, we will delve into the world of aspect-oriented programming and understand how it works to apply it in our applications. What…
In this new article about Entity Graph with JPA in Spring Boot, we will explore how to improve our queries and enhance application performance. If you want to expand your…
In this new article about Exactly Once with Kafka in Spring Boot, we will see how to achieve exactly once message delivery between producer and consumer using the Kafka Transactional…
Often in projects, we need to maintain constant communication with the backend server to make requests or display real-time information. WebSockets can help us with that. In this post, we'll…
In recent times, Spring Boot has become the de facto framework for creating microservices. One of the patterns used in microservice creation is choreography, where Kafka, using the event sourcing…
In this post, we will try to see a Guide to Spring BeanPostProcessor is since we often use it without knowing. It is very important to understand this type of…