A Day In The Life Of A Software Engineer In A Scrum Team
Read More
Unlocking Scrum: A Software Engineer’s Journey – Part 1
اقرأ المزيد
Previous slide
Next slide
Resilience in Microservices: Implementing the Retry Pattern in Java
Implementing Reslience in Microservices using Java
Let’s Make TLS Easy!
Communication Strategies for Java Microservices
Calling Microservices in Java: Part 1

Introduction Welcome back! Building on our previous discussion on the Circuit Breaker pattern, this article will explore one of the essential resilience patterns. Implementing resilience in microservice with the Retry

//
June 25, 2024

Introduction Welcome back! In this part, we will talk about part 3 of Microservices in Java, make sure to check part 1 and part 2, let's dive into it. In

//
May 17, 2024

Introduction TLS is the secure communication protocol of the internet that ensures the safety and integrity of information. In this article, we'll make TLS easy to explore its history, functionality,

//
April 23, 2024

Introduction In the world of Java microservices, Communication strategies between services are crucial for building scalable and resilient systems. This article explores various communication methods available within the Java ecosystem,

//
April 17, 2024

Introduction When building applications that need to talk to other parts of the system (microservices), Java programmers have access to a variety of tools and techniques that they can use

//
April 13, 2024
Written by 
Muaath Bin Ali
Published on
November 21, 2023
Comments By
0

Follow Us

Resilince Microservices using Retry pattern
Architecture
Muaath Bin Ali

Resilience in Microservices: Implementing the Retry Pattern in Java

Introduction Welcome back! Building on our previous discussion on the Circuit Breaker pattern, this article will explore one of the essential resilience patterns. Implementing resilience in microservice with the Retry pattern in Java is crucial for enhancing reliability and delivering a seamless user experience. by providing mechanisms to handle transient

Read More
Architecture
Muaath Bin Ali

Implementing Reslience in Microservices using Java

Introduction Welcome back! In this part, we will talk about part 3 of Microservices in Java, make sure to check part 1 and part 2, let’s dive into it. In typical microservice architectures, where services are interconnected and continuously communicating, ensuring resilience in Microservices architectures is crucial. However, it’s challenging

Read More
Architecture
Muaath Bin Ali

Let’s Make TLS Easy!

Introduction TLS is the secure communication protocol of the internet that ensures the safety and integrity of information. In this article, we’ll make TLS easy to explore its history, functionality, and significance in today’s online world. What is TLS? Imagine that you want to send a private message to a

Read More
Communication in Java
Architecture
Muaath Bin Ali

Communication Strategies for Java Microservices

Introduction In the world of Java microservices, Communication strategies between services are crucial for building scalable and resilient systems. This article explores various communication methods available within the Java ecosystem, discussing their use cases, pros, and cons, and providing practical examples. Whether you’re a seasoned Java developer or just starting

Read More
Calling Microservices in Java
Architecture
Muaath Bin Ali

Calling Microservices in Java: Part 1

Introduction When building applications that need to talk to other parts of the system (microservices), Java programmers have access to a variety of tools and techniques that they can use for their development tasks. This article will guide you through different ways of calling Microservices in Java, from basic methods

Read More
Effective Java Logging
Java
Muaath Bin Ali

Effective Java Logging

Introduction Effective Logging is an essential aspect of any Java application, providing insights into its operational state. It is especially crucial in production environments, where it aids in debugging, monitoring, and incident response. In this comprehensive guide, we will explore the effective practices for using SLF4J with Logback, ensuring a

Read More