Spring Boot is a popular Java framework for building microservices, and Eureka is a service discovery tool that is often used with Spring Boot. Eureka allows services to register themselves with the registry and to discover other services that are registered. In this article, we will discuss how to configure Spring Boot with Eureka. <dependency> […]
Feign is a Java-based client-side HTTP library that is used to make HTTP requests to RESTful web services. It simplifies the process of making RESTful API calls and eliminates the need to write boilerplate code. Feign is built on top of the popular Spring Framework and is widely used in microservice-based architectures. One of the […]
Dagger implements the DI pattern without the burden of writing boilerplate code. Dagger 2 is the first to implement the full stack with generated code. The guiding principle is to generate code that mimics the code that a user might have hand-written to ensure that dependency injection is as simple, traceable and performant as it can be. Declaring […]