本文节选自《疯狂Spring Cloud微服务架构实战》
京东购买地址::https://item.jd.com/12256011.html
当当网购买地址::http://product.dangdang.com/25201393.html
Spring Cloud教学视频:http://blog.csdn.net/boxiong86/article/details/78399104
要点
搭建Eureka集群
在运行第一个Eureka应用时,服务器实例、服务提供者实例都只是启动了一个,并没有体现高可用的特性,本小节将对前面的Eureka应用进行改造,使其可以进行集群部署。
本例将会运行两个服务器实例、两个服务提供者实例,然后服务调用者请求服务,集群结构如图3-6所示。
图3-6集群结构
第一个Eureka应用,使用的是浏览器访问Eureka的服务调用者,而改造后,为了能看到负载均衡的效果,会编写一个HttpClient的REST客户端访问服务调用者发布的服务。
由于本书的开发环境只有一台电脑,操作系统为Windows,如果要构建集群,需要修改hosts文件,为其添加主机名的映射。修改C:\Windows\System32\drivers\etc\hosts文件,添加以下内容:
127.0.0.1 slave1 slave2
新建项目“first-cloud-server”,使用Maven配置与3.2章节的服务器一致,由于需要对同一个应用程序启动两次,因此需要在配置文件中使用profiles(关于profiles已经在第2章中讲述过)。服务器配置文件请见代码清单3-10。
代码清单3-10:codes\03\3.3\first-cloud-server\src\main\resources\application.yml
server:
port: 8761
spring:
application:
name: first-cloud-server
profiles: slave1
eureka:
instance:
hostname: slave1
client:
serviceUrl:
defaultZone: http://slave2:8762/eureka/
---
server:
port: 8762
spring:
application:
name: first-cloud-server
profiles: slave2
eureka:
instance:
hostname: slave2
client:
serviceUrl:
defaultZone: http://slave1:8761/eureka/
代码清单3-10中配置了两个profiles,名称分别为slave1和slave2。在slave1中,配置了应用端口为8761,主机名为slave1,当使用salve1这个profiles来启动服务器时,将会向http://slave2:8762/eureka/注册自己。使用salve2来启动服务器,会向http://slave1:8761/eureka/注册自己。简单点说,就是两个服务器启动后,它们会互相注册。
修改启动类,让类在启动时,读取控制台的输入,决定使用哪个profiles来启动服务器,请见代码清单3-11。
代码清单3-11:codes\03\3.3\first-cloud-server\src\main\java\org\crazyit\cloud\FirstServer.java
@SpringBootApplication
@EnableEurekaServer
public class FirstServer {
public static void main(String[] args) {
//读取控制台输入,决定使用哪个profiles
Scanner scan = new Scanner(System.in);
String profiles = scan.nextLine();
new SpringApplicationBuilder(FirstServer.class).profiles(profiles).run(args);
}
}
启动类中,先读取控制的输入,再调用profiles方法来设置启动的profles。需要注意的是,第一个启动的服务器会抛出异常,异常原因我们前已经讲述,抛出的异常可不必理会。
服务提供者也需要启动两个实例,服务提供者的改造与服务端类似,将3.2章节中的“first-ek-service-provider”复制出来,并改名为“first-cloud-provider”。修改配置文件,将服务提供者注册到两个服务器中,配置文件请见代码清单3-12。
代码清单3-12:codes\03\3.3\first-cloud-provider\src\main\resources\application.yml
spring:
application:
name: first-cloud-provider
eureka:
instance:
hostname: localhost
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/,http://localhost:8762/eureka/
再修改启动类,为了避免端口决定,启动时读取控制台输出,决定使用哪个端口来启动,启动类如代码清单3-13所示。
代码清单3-13:
codes\03\3.3\first-cloud-provider\src\main\java\org\crazyit\cloud\FirstServiceProvider.java
//读取控制台输入的端口,避免端口冲突
Scanner scan = new Scanner(System.in);
String port = scan.nextLine();
new SpringApplicationBuilder(FirstServiceProvider.class).properties(
"server.port=" + port).run(args);
启动类中使用了properties方法来设置启动端口。为了能看到效果,还需要改造控制器,将服务调用者请求的URL保存起来并返回,修改后的控制器请见代码清单3-14。
代码清单3-14:
codes\03\3.3\first-cloud-provider\src\main\java\org\crazyit\cloud\FirstController.java
@RestController
public class FirstController {
@RequestMapping(value = "/person/{personId}", method = RequestMethod.GET,
produces = MediaType.APPLICATION_JSON_VALUE)
public Person findPerson(@PathVariable("personId") Integer personId, HttpServletRequest request) {
Person person = new Person(personId, "Crazyit", 30);
//为了查看结果,将请求的URL设置到Person实例中
person.setMessage(request.getRequestURL().toString());
return person;
}
}
控制器的findPerson方法,将请求的URL保存到Person实例的message属性中,调用服务后,可以通过message属性来查看请求的URL。
将3.2章节中的“first-ek-service-invoker”复制并改名为“first-cloud-invoker”。本例中的服务调用者只需启动一个实例,因此修改下配置文件即可使用,请见代码清单3-15。
代码清单3-15:codes\03\3.3\first-cloud-invoker\src\main\resources\application.yml
server:
port: 9000
spring:
application:
name: first-cloud-invoker
eureka:
instance:
hostname: localhost
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/,http://localhost:8761/eureka/
修改的配置,将服务调用注册到两个服务器上。
本例使用的是HttpClient,HttpClient是Apache提供的一个HTTP工具包。新建名称为“first-cloud-rest-client”的项目,在pom.xml中加入以下依赖:
新建启动类,在main方法中编写调用REST服务的代码,如代码清单3-16所示。
代码清单3-16:03\3.3\first-cloud-rest-client\src\main\java\org\crazyit\cloud\TestHttpClient.java
//创建默认的HttpClient
CloseableHttpClient httpclient = HttpClients.createDefault();
//调用6次服务并输出结果
for(int i = 0; i <6; i++) {
//调用GET方法请求服务
HttpGet httpget = new HttpGet("http://localhost:9000/router");
//获取响应
HttpResponse response = httpclient.execute(httpget);
//根据 响应解析出字符串
System.out.println(EntityUtils.toString(response.getEntity()));
}
在main方法,调用了6次9000端口的router服务并输出结果。完成编写后,按以下顺序启动各个组件:
启动两个服务器端,控制台中分别输入“slave1”和“slave2”。
启动两个服务提供者,控制台分别输入8081与8082。
启动服务调用者。
启动了整个集群后,运行TestHttpClient,可以看到输出如下:
{"id":1,"name":"Crazyit","age":30,"message":"http://localhost:8081/person/1"}
{"id":1,"name":"Crazyit","age":30,"message":"http://localhost:8082/person/1"}
{"id":1,"name":"Crazyit","age":30,"message":"http://localhost:8081/person/1"}
{"id":1,"name":"Crazyit","age":30,"message":"http://localhost:8082/person/1"}
{"id":1,"name":"Crazyit","age":30,"message":"http://localhost:8081/person/1"}
{"id":1,"name":"Crazyit","age":30,"message":"http://localhost:8082/person/1"}
根据输出结果可知,8081与8082端口分别被请求了3次,可见已经达到负载均衡的目的,关于负载均衡更详细的内容,将在后面章节中讲解。
本文节选自《疯狂Spring Cloud微服务架构实战》
Spring Cloud教学视频:http://blog.csdn.net/boxiong86/article/details/78399104
本书代码共享地址:https://gitee.com/yangenxiong/SpringCloud