6. Microservices family - distributed transaction Seata
Catalog Spring Cloud Alibaba microservice series articles
0. Spring Cloud Alibaba micro service series - preparations1. Spring Cloud Alibaba micro service series - service registry Nacos2. Spring Cloud Alibaba micro service series - configuration center Nacos3. Spring Cloud Alibaba micro service series - service call Open Feign4. Spring Cloud ...
Posted by remlabm on Tue, 08 Feb 2022 16:02:30 +0100
Building nacos based on Spring Cloud Alibaba
relationship
Spring Boot is a framework. The various components are gathered together to facilitate the rapid development of web applications. Spring Cloud is based on Spring Boot and defines a set of specific components, which can facilitate the development of microservice engineering. Spring Cloud Alibaba has made some adjustments on the bas ...
Posted by MikeL7 on Tue, 08 Feb 2022 00:05:43 +0100
Principle Analysis of Execution Order of Spring Cloud Gateway Filter
Filter type
GlobalFilter: A global filter that is valid for all routes. Create by implementing the GlobalFilter interface
GatewayFilter: Gateway filters, also known as local filters or custom filters, only work for routes that have this filter configured. Created through GatewayFilterFactory.
The filter is executed twice and is divided into ...
Posted by methyl_blue on Sun, 06 Feb 2022 19:30:27 +0100
Microservice architecture | 10.2 using Papertrail to realize log aggregation
preface
reference material:
<Spring Microservices in Action>
Principle and practice of Spring Cloud Alibaba microservice
"Spring cloud framework development tutorial in Silicon Valley of station B" Zhou Yang
Papertrail is a cloud based service (based on free value-added), which allows developers to aggregate log data from mul ...
Posted by zgkhoo on Sun, 06 Feb 2022 05:53:14 +0100
SpringCloud Day08 -- message driven (SpringCloud Stream)
11. Spring cloud stream message driven
11.1 message driven overview
11.1.1 what is it?
Officially, Spring Cloud Stream is a framework for building message driven microservices.
The application interacts with the binder object in Spring Cloud Stream through inputs or outputs. We configure binding, and the binder object of Spring Cloud St ...
Posted by VinzC on Thu, 03 Feb 2022 13:54:37 +0100
Springcloud Day12 - spring cloud Alibaba sentinel service fusing and current limiting
15. Spring cloud Alibaba sentinel realizes fusing and current limiting
15.1 general
15.1.1 official website
english: https://github.com/alibaba/Sentinel
chinese: https://github.com/alibaba/Sentinel/wiki/%E4%BB%8B%E7%BB%8D
15.1.2 introduction
In one sentence, we explained the Hystrix before
15.1.3 where to go
https://github.com/a ...
Posted by wstran on Thu, 03 Feb 2022 11:22:52 +0100
Microservice architecture | 7.2 building OAuth2 security authentication using JWT token storage
preface
<Spring Microservices in Action>
Principle and practice of Spring Cloud Alibaba microservice
"Spring cloud framework development tutorial in Silicon Valley of station B" Zhou Yang
JWT provides specifications and standards for OAuth2 tokens, and JWT tokens can be customized;
1. Basic knowledge of JWT token storage
1.1 ...
Posted by Katmando on Thu, 03 Feb 2022 10:52:20 +0100
Microservice architecture | 7.1 security authentication based on OAuth2
preface
<Spring Microservices in Action>
Principle and practice of Spring Cloud Alibaba microservice
"Spring cloud framework development tutorial in Silicon Valley of station B" Zhou Yang
OAuth2 is a token based security authentication and authorization framework. It allows users to authenticate using third-party authenticati ...
Posted by petrb on Thu, 03 Feb 2022 06:29:38 +0100
Learning notes - springCloud
Overall website architecture
SpringCloud and springBoot
SpringBoot focuses on developing individual micro services quickly and easily.
SpringCloud is a microservice coordination and management framework that focuses on the overall situation. It integrates and manages individual microservices developed by SpringBoot, and provides integrated ...
Posted by kevin99 on Thu, 03 Feb 2022 03:14:54 +0100
Distributed transaction
1. TCC of distributed transaction solution
1.1 what is a TCC transaction
TCC is the abbreviation of try, Confirm and Cancel. TCC requires each branch transaction to implement three operations: preprocess try, Confirm and Cancel. Try performs business check and resource reservation, Confirm performs business confirmation, and Cancel imp ...
Posted by Harsh on Wed, 02 Feb 2022 11:46:10 +0100