05-LoadBalancer负载均衡

1、介绍

目前主流的负载方案分为以下两种:

  • 集中式负载均衡,在消费者和服务提供方中间使用独立的代理方式进行负载,有硬件的(比如 F5),也有软件的(比如 Nginx)。
  • 客户端根据自己的请求情况做负载均衡,LoadBalancer、Ribbon 就属于客户端自己做负载均衡。

2、快速开始

废话不多少,上代码。

pom.xml

maven依赖配置文件,如下:



	4.0.0

	com.mindasoft
	spring-cloud-ribbon-consumer
	0.0.1-SNAPSHOT
	jar

	spring-cloud-ribbon-consumer
	Demo project for Spring Boot

	
		org.springframework.boot
		spring-boot-starter-parent
		2.6.4
		 
	

	
		UTF-8
		UTF-8
		1.8
		2021.0.1
	

	
		
			org.springframework.cloud
			spring-cloud-starter-netflix-eureka-client
		
		
			org.springframework.boot
			spring-boot-starter-web
		

		
			org.springframework.boot
			spring-boot-starter-test
			test
		
	

	
		
			
				org.springframework.cloud
				spring-cloud-dependencies
				${spring-cloud.version}
				pom
				import
			
		
	

	
		
			
				org.springframework.boot
				spring-boot-maven-plugin
			
		
	

	
		
			nexus-aliyun
			Nexus aliyun
			https://maven.aliyun.com/repository/public
			default
			
				false
			
			
				true
			
		
	
	
		
			nexus-aliyun
			Nexus aliyun
			https://maven.aliyun.com/repository/public
			
				false
			
			
				true
			
		
	



上面配置文件,我们没有新增LoadBalancer的配置,其实spring-cloud-starter-netflix-eureka-client已经依赖了一个具体实现,在老版本的是Ribbon,新的版本是Spring自己实现的loadbalancer,如下:。


    org.springframework.cloud
    spring-cloud-starter-loadbalancer

所以不需要格外添加配置。

application.properties

服务配置文件,也可以用yml,如下:

server.port=9003

# 服务注册中心地址
eureka.client.service-url.defaultZone=http://localhost:9000/eureka/

# 服务名称
spring.application.name=loadbalancer-customer

LoadBalancerConsumerApplication

服务启动类,如下:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;

@EnableDiscoveryClient // Eureka Discovery Client 标识
@SpringBootApplication
public class LoadBalancerConsumerApplication {

	@Bean
	@LoadBalanced  		// 开启负载均衡的功能
	RestTemplate restTemplate() {
		return new RestTemplate();
	}

	public static void main(String[] args) {
		SpringApplication.run(SpringCloudRibbonConsumerApplication.class, args);
	}
}

上面代码中,@LoadBalanced 注解开启了RestTemplate的负载均衡,具体原理后面深入源码学习时再做了解。这里只需要了解该注解标记后,该http请求会有负载均衡效果。

ConsumerController

服务调用,

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

/**
 * Created by huangmin
 */
@RestController
public class ConsumerController {

	private static final Logger LOGGER = LoggerFactory.getLogger(ConsumerController.class);
	
	@Autowired
	private RestTemplate restTemplate; // HTTP客户端

	@RequestMapping("/hello")
	public String hello() {
		String providerMsg = restTemplate.getForEntity("http://PROVIDER-SERVICE/hello",
				String.class).getBody();

		return "Hello,I'm Customer! msg from provider : 

" + providerMsg; } }

3、Ribbon

如果需要使用Ribbon的话,我们只需要改一下依赖文件即可:


	
		org.springframework.cloud
		spring-cloud-starter-netflix-eureka-client
		
			
				org.springframework.cloud
				spring-cloud-loadbalancer
			
		
	
	
		org.springframework.cloud
		spring-cloud-starter-netflix-ribbon
                2.2.10.RELEASE
	
	
		org.springframework.boot
		spring-boot-starter-web
	
	
		org.springframework.boot
		spring-boot-starter-test
		test
	

这里移出了loadbalancer ,添加Ribbon的包。其他配置不用动即可换成Ribbon

你可能感兴趣的:(05-LoadBalancer负载均衡)