接上一篇,假设我们的MY-CLIENT服务的访问量剧增,用一个服务已经无法承载, 我们可以把这个服务做成一个集群,接下来我们就简单的测试一下,接着上一篇的项目开始改:
本篇源码地址case-02-ribbon 先启动我们的spring-cloud-server项目,接着再向下进行
这里只改动HelloController类,让它返回内容时,带上它的端口号
package com.perfree.controller;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@Value("${server.port}")
private String port;
@RequestMapping("/hello")
public String hello() {
return "Hello from " + port;
}
}
为了规范,我们将配置文件里的应用名改一下
#端口号
server.port=8882
#应用名称
spring.application.name=MY-CLIENT
#服务中心地址
eureka.client.service-url.defaultZone=http://localhost:8881/eureka
改完之后,我们启动spring-cloud-client,启动成功之后,再进行修改它配置文件,将端口修改为8884,如下
#端口号
server.port=8884
#应用名称
spring.application.name=MY-CLIENT
#服务中心地址
eureka.client.service-url.defaultZone=http://localhost:8881/eureka
再启动一次项目,这样,注册中心就显示两个MY-CLIENT服务了
在启动类restTemplate方法上添加@LoadBalanced表示开启负载均衡
package com.perfree;
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;
@SpringBootApplication
@EnableDiscoveryClient
public class SpringCloudRibbonApplication {
public static void main(String[] args) {
SpringApplication.run(SpringCloudRibbonApplication.class, args);
}
//注入RestTemplate
@Bean
@LoadBalanced//开启负载均衡
public RestTemplate restTemplate() {
return new RestTemplate();
}
}
修改HelloController类以应用名方式调用接口,如下
package com.perfree.controller;
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;
@RestController
public class HelloController {
@Autowired
private RestTemplate restTemplate;
@RequestMapping("/")
public String hello() {
return restTemplate.getForEntity("http://MY-CLIENT/hello", String.class).getBody();
}
}
接着启动该项目
接下来测试访问http://127.0.0.1:8883/ 第一次访问结果: 第二次访问结果: 第三次: 第四次: 这样,一个简单的负载均衡就实现了