Spring source code analysis
Through the previous study, we have learned how the primary container of spring is initialized, but compared with the unfamiliar XmlBeanFactory, ApplicationContext is obviously more familiar to everyone. The spring advanced container ApplicationContext contains all the things in the primary container XmlBeanFactory. Based on the primary contain ...
Added by ShaolinWood on Sun, 06 Mar 2022 09:58:46 +0200
Application practice of 04 Nacos service registry
Background analysis
In microservices, the first problem we need to face is how to find services (software is a service), and the second is how to communicate between different services? How to manage every service in the application better and more conveniently, and how to establish the link between various services, so that the registration c ...
Added by Assim on Thu, 03 Mar 2022 10:11:53 +0200
Spring Cloud Eureka: Client source code
entrance
stay Last In the built Spring Cloud Client project, Eureka client was successfully started after adding a little configuration to the configuration file. How did the client join Spring? We know that if we want to register some beans into Spring, but these beans are not under the scanning path of Spring, there are only two schemes ...
Added by edg322 on Wed, 02 Mar 2022 11:14:38 +0200
Eureka service registration and discovery in spring cloud
catalogue
Eureka service registration and discovery
Server
Client (service provider)
consumer
Start sequence
Eureka service registration and discovery
Eureka is divided into server and client: Generally speaking, the server is the registration center of all services, and the client is each service provider. This paper has taken stand- ...
Added by fatmikey on Sun, 27 Feb 2022 13:25:24 +0200
eureka single machine of spring cloud
1. Briefly, what is eureka
Eureka is a Netflix open source product that provides service registration and discovery. It provides a complete implementation of Service Registry and Service Discovery. It is also one of the most important and core components in the spring cloud system.
I simply understand it as the registration center. All servic ...
Added by Dtonlinegames on Wed, 09 Feb 2022 22:07:16 +0200
Implementing distributed system authorization with Spring Security
1 demand analysis
The technical solutions reviewed are as follows:
1. The UAA authentication service is responsible for authentication authorization.
2. All requests arrive at the microservice through the gateway
3. The gateway is responsible for authenticating the client and forwarding the request
4. The gateway parses the token a ...
Added by daedalus__ on Wed, 09 Feb 2022 06:08:18 +0200
SpringCloud - learning and recording of Eureka feign ribbon, hystrix zuul and other key components
SpringCloud - learning and recording of Eureka feign ribbon, hystrix zuul and other key components
Foreword: This article is the feeling and summary after learning the crazy spring cloud tutorial recently. Since the understanding of the spring cloud system is still in the initial stage, it is inevitable to be biased in wording and understandin ...
Added by nerya on Fri, 04 Feb 2022 08:31:25 +0200
Configuration of dependent plug-ins in Maven POM file
POM (Project Object Model) is the working basis of Maven project XML exists in the project, where the details of the construction project are configured. It pre configures some default values for most projects, such as build directory, source directory src/main/java, test source directory src/test/java, and so on.
Here is a simple rec ...
Added by finalxerror on Wed, 02 Feb 2022 08:23:22 +0200
Chapter III Alibaba cloud core component service governance Nacos
1. What is the registry of micro services
Microservice architecture diagram What is a registry (service governance) Service registration: the service provider reports its own network information to the registration center when it is started Service discovery: the service consumer reports its own network information to the registration cent ...
Added by tomz0r on Mon, 31 Jan 2022 07:15:12 +0200
Microservice 5: service registration and discovery (practice)
★ micro service series
Microservices 1: microservices and its evolution history
Microservice 2: microservice panoramic architecture
Microservice 3: microservice splitting strategy
Microservice 4: service registration and discovery
Microservice 5: service registration and discovery (practice)
1 service registry
Previously, we introduced several ...
Added by evanluke on Sat, 29 Jan 2022 08:28:17 +0200