Construction of spring cloud project

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

spring cloud gateway route forwarding and encryption and decryption of request and response

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

Spring cloud learning service downgraded

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

Bus for spring cloud source code analysis

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

Dubbo+Zookeeper+Springboot microservice development

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

Spring Cloud - service Gateway

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

[note] Spring Cloud Zuul(API gateway service) and spring cloud config (configuration center) of spring cloud

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

Spring Cloud - Spring Cloud Config distributed configuration center - 13 (personal note)

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

The Springboot API interface unifies the output message format and keeps the return value of the original interface unchanged

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

(72) how to obtain user information and authenticate under the microservice architecture of java Spring Cloud+Spring boot+mybatis enterprise rapid development architecture?

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