Spring Cloud
SpringCloud Alibaba microservice solution 1. General Spring Cloud Alibaba is a sub project of Spring Cloud, which is committed to providing a one-stop solution for microservice development. This project contains the necessary components for developing distributed application microservices, so UTF-8...
Posted by alexvgtb on Tue, 21 Sep 2021 02:10:02 +0530
Please refer to and learn the introduction and operating principle of sygateway by yourself. The content of this chapter needs to be based on the basic understanding and certain knowledge of spring cloud gateway. Attach a blog post for learning: Spring cloud gateway (the most complete in HistorUTF-8...
Posted by jimmyhumbled on Thu, 23 Sep 2021 10:16:29 +0530
service degradation 1. Some concepts Why should there be service degradation? Applications in complex distributed architectures have dozens of dependencies, and each dependency will inevitably fail at some time. In order to avoid the service avalanche effect due to excessive fan out. What is seUTF-8...
Posted by sig on Sat, 25 Sep 2021 17:19:29 +0530
preface The main functions of Spring Cloud Bus: event subscription and publishing, and the specific implementation of event listening; Spring Cloud Bus is based on spring cloud stream, which shields the differences of underlying message middleware and encapsulates it into various binders. 1, BUTF-8...
Posted by jpotte00 on Sun, 26 Sep 2021 16:16:29 +0530
Modularization, functionalization RPC [Remote Procedure Call] refers to Remote Procedure Call. It is a way of inter process communication. It is a technical idea, not a specification. It allows a program to call a procedure or function in another address space (usually on another machine sharinUTF-8...
Posted by aditya2071990 on Tue, 05 Oct 2021 23:46:50 +0530
1, What is a service gateway Service gateway is also called API gateway. The so-called API gateway is only the unified entrance of the system. It encapsulates the internal structure of the application and provides unified services for the client. Some public logic independent of the business fUTF-8...
Posted by freenity on Thu, 07 Oct 2021 03:24:57 +0530
Spring Cloud Zuul Build gateway Create a Spring Boot project and name it API getaway. Add spring cloud starter zuulAdd @ EnableZuulProxy to the main application class (enable API gateway service function with annotation)Configure the basic information of Zuul (application name, port number, etUTF-8...
Posted by webguy262 on Thu, 07 Oct 2021 13:08:01 +0530
1. Overview Microservice architecture means that more and more individual services will be generated. Each business module is disassembled into a microservice module. Each microservice module has its own configuration file. With the increase of modules, there are more and more configuration filUTF-8...
Posted by deko on Sat, 09 Oct 2021 14:28:21 +0530
Environment: springboot 2.4.11 In many cases, we will do unified processing on the return value of the interface, and return {code, message, data} and other information to identify the processing result of this request. This unified processing is also done on their own controllers. This articleUTF-8...
Posted by katie77 on Sun, 10 Oct 2021 07:34:49 +0530
In the traditional single project, our user authentication is usually in the project. After splitting into micro services, a business operation will involve multiple services. So how to authenticate users? How to obtain user information in the service? These operations can be implemented in theUTF-8...
Posted by Kestrad on Tue, 12 Oct 2021 05:58:33 +0530