There are several things I don't understand when learning springcloud for beginners.

1. Does the load balancer need to be configured only by the service consumer, and whether the url that the browser accesses the micro-service through the gateway needs to be configured.
2.feign is the service calling service. Does the service itself need to be configured?
3. Was the fuse added to the service provider

Apr.15,2022

    The Ribbon in
  1. Spring Cloud is a client-side load balancer, which, as you understand, is the behavior of the service consumer. When you load balance from gateway to internal service, you can understand that a non-network manager is a service consumer. When the gateway forwards a request, more services to be forwarded will do load balancing algorithm.
  2. do not understand what configuration you are trying to say
  3. for the service consumer, the provider generally restricts the flow
Menu