Monolithic vs Microservices architecture: architecture means the layout or structure for building software applications. scalability, flexibility, and ease of maintenance these are the main components we should consider while building an application .
π Monolithic Architecture:
π In a monolithic architecture, the entire application is developed, deployed, and scaled as a single unit. which means having all your software components tightly packed together in one big box.
π All components are tightly coupled and interconnected.
πIf you want to make changes or add something new, you often need to work on the entire application at once.
π Changes to one part of the application may require rebuilding and redeploying the entire application.
π Microservices Architecture:
π The application is divided into smaller, loosely coupled services that can be developed, deployed, and scaled independently. which means every thing is individual component like ( Amazon app has cart service, payment service, Search here all are individual)
π the application is divided into smaller, independent services, like separate houses. where in monolithic is like an whole appartment
π Each service handles a specific task or function, such as user Login or payment processing.
π If we need to make changes or add something new, we can work on one house (or service) without affecting the others.
➡ JSON, XML, and CSV are commonly used for data interchange! in RESTAPI's ok but what is data interchange!?? ⤵ ➡ data interchange format like a language that computers use to talk to each other. Just as people use different languages to communicate, like English, Spanish, or Chinese, computers use specific formats to exchange information. These formats make sure that data is structured in a way that both computers can understand, whether they're sharing data over the internet, saving it to a file, or passing it between different parts of a program. JSON(JavaScript Object Notation) : it used for representing structured data in RESTful APIs, particularly in Spring Web applications. Spring provides excellent support for JSON processing through libraries like Jackson, ➡ It is like writing down information in a way that's easy for both humans and computers to understand. It's a simple and readable format that's often used for transmitting data between a web server ...

Comments
Post a Comment