Learning Nacos? Let's start with services and practical tutorials~

preface I have written many articles related to Nacos, such as< Spring Cloud integration Nacos service discovery source code analysis? Turned three sets of source code, quality and freshness! >At present, it is also planned to write a column on technical analysis of Spring Cloud, one technical framework and one technical framework to dis ...

Added by bough on Thu, 10 Feb 2022 10:55:53 +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

Spring cloud Netflix circuit breaker Hystrix

What is Hystrix Hystrix is an open source library for dealing with delay and fault tolerance of distributed systems. In distributed systems, many dependencies inevitably fail to call, such as timeout and exception. Hystrix can ensure that in the case of a dependency failure, it will not lead to overall service failure, avoid cascading failures ...

Added by stephanie on Wed, 09 Feb 2022 17:53:49 +0200

Learn about Spring Cloud micro service and micro service building (Nacos)

1, Introduction to microservices Microservices are service units that can be deployed independently, expanded horizontally and accessed independently. The smallest common microservice unit in Java is an independent project based on the SpringBoot framework. A micro service only does one thing (single responsibility), and multiple micro servic ...

Added by keithwjones on Wed, 09 Feb 2022 06:22:31 +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--Eureka Service Registry

Eureka is a REST-based service used to locate services for cloud middleware layer service discovery and failover. Service registration and discovery is very important for micro services. With service registration and discovery, services can be accessed by using only the identifier of the service, without modifying the configuration file ...

Added by _rhod on Wed, 09 Feb 2022 02:33:13 +0200

Build SpringCloud microservice framework from scratch -- Auth service integration JWT

In the previous article, we established the Auth service, which is specially used to handle user authentication and authorization. Here, we integrate JWT as the authentication ticket. What JWT What is JWT Json web token (JWT) is a JSON based open standard (RFC 7519) implemented to transfer declarations between network application enviro ...

Added by gdrums on Tue, 08 Feb 2022 11:36:03 +0200

Relearn spring cloud series 8 - microservice gateway security authentication - JWT

Gateway JWT authentication process 1, Authentication process of gateway authentication document At present, the mainstream process of developing user authentication and service access authentication combined with microservice gateway and JWT token is as follows: User authentication process: the user sends a login authentication reques ...

Added by marinedalek on Tue, 08 Feb 2022 10:08:18 +0200

Re learn SpringCloud series nine micro service GateWay gateway

Is it necessary to learn Zuul? 1, What is API gateway Before we begin to explain the Spring Cloud GateWay, it is necessary to explain what an API gateway is. The word gateway first appeared in network devices, such as network devices with routing function, isolation function and security verification function between two isolated LANs. ...

Added by scorphus on Tue, 08 Feb 2022 06:19:06 +0200

Function and use of OpenFeign

1. Steps for using openfeign 1.1 what is openfeign? What's the difference between him and Feign? Feign is a declarative Web Service client. Its appearance makes it easy to develop Web Service clients. To use feign, you only need to create an interface and add corresponding annotations, such as FeignClient annotation. There are notes for f ...

Added by lee_umney on Tue, 08 Feb 2022 02:44:34 +0200