- Building Microservices with .NET Core 2.0(Second Edition)
- Gaurav Aroraa
- 301字
- 2021-07-02 20:12:55
Prerequisites for microservices
To understand better, let's take up an imaginary example of FlixOne Inc. With this example as our base, let's discuss all the concepts in detail and see what it looks like to be ready for microservices.
FlixOne is an e-commerce player (selling books) that is spread all over India. They are growing at a very fast pace and persifying their business at the same time. They have built their existing system on the .NET framework, and it is traditional three-tier architecture. They have a massive database that is central to this system, and there are peripheral applications in their ecosystem. One such application is for their sales and logistics team, and it happens to be an Android app. These applications connect to their centralized data center and face performance issues. FlixOne has an in-house development team supported by external consultants. Refer to the following diagram:

The preceding diagram depicts a broader sense of our current application, which is a single .NET assembly application. Here we have the user interfaces we use for search, order, products, tracking order, and checkout. Now look at the following diagram:

The preceding diagram depicts our Shopping cart module only. The application is built with C#, MVC5, and Entity Framework, and it has a single project application. This image is just a pictorial overview of the architecture of our application. This application is web-based and can be accessed from any browser. Initially, any request that uses the HTTP protocol will land on the user interface that is developed using MVC5 and JQuery. For cart activities, the UI interacts with the Shopping cart module, which is nothing but a business logic layer that further talks with the database layer (written in C#); data is persisted within the database (SQL Server 2008R2).
- Spring Boot 2實戰之旅
- Progressive Web Apps with React
- Learning Cython Programming
- Visual C++串口通信開發入門與編程實踐
- ASP.NET Core Essentials
- Android 9 Development Cookbook(Third Edition)
- Learning SAP Analytics Cloud
- Python爬蟲開發與項目實戰
- 量化金融R語言高級教程
- iOS開發實戰:從入門到上架App Store(第2版) (移動開發叢書)
- 區塊鏈技術與應用
- Modern C++ Programming Cookbook
- Python第三方庫開發應用實戰
- 例說FPGA:可直接用于工程項目的第一手經驗
- Mastering Clojure