Compenstation patterns in Microservices

Learn 10 essential design patterns: Circuit Breaker, Fallback, Bulkhead, Event Sourcing, Request-Response, Message Queue, Publish-Subscribe, Leader Election, Two-Phase Commit, and Outbox

Comments Off on Compenstation patterns in Microservices
Read more about the article NoSQL Database types
NoSQL Database types

NoSQL Database types

NoSql databases Key-value stores, Document stores, Wide column databases, Graph databases, Multi Model databases are the most widely adopted ones. Every NoSQL database has unique purposes, offerings and limitations. If…

0 Comments
Read more about the article Best Java IDE for Java programmers
Best Java IDE

Best Java IDE for Java programmers

The feature-rich, code-centric IDEs (Integrated Development Environment) provides comprehensive facilities to make Java programming easier and productive. Intellij idea IDE, Eclipse Java IDE, NetBeans IDE, BlueJ IDE, Xcode, MyEclipse, jGRASP …

0 Comments
Read more about the article Using ResponseEntity in Spring
ResponseEntity & RequestEntity parts

Using ResponseEntity in Spring

ResponseEntity, RequestEntity are used in Spring REST apis, RequestEntity is used as method level argument and ResponseEntity is used as method response. Both of these, can wrap any type of…

0 Comments
Read more about the article Spring Server-Sent Events
Spring websockets with STOMP client

Spring Server-Sent Events

Spring provides Server-sent events apis ResponseBodyEmitter, SseEmitter and WebSockets for server to client communication and vice-versa. Server-sent events are used to handle asynchronous processing on the server side. Websockets connections…

0 Comments
Read more about the article Spring task scheduler examples
spring-task-scheduler

Spring task scheduler examples

Spring task scheduler is either configured with @scheduled annotation or dynamically with Java code, to schedule a task. @EnableScheduling is required to enable support for Spring task scheduling. Spring task…

1 Comment