一、简述
个人对服务注册和发现的理解:在服务注册与发现中,有一个注册中心,当服务器启动的时候,会把当前自己服务器的信息 比如 服务地址通讯地址等以别名方式注册到注册中心上;另一方(消费者|服务提供者),以该别名的方式去注册中心上获取到实际的服务通讯地址,让后在实现本地rpc调用远程。
二、对消费者和生产者大致理解
生产者:提供对外的api接口
消费者:使用生产者对外提供的api接口
三、什么是rpc
作为一枚萌萌哒小白,讲解不够太细致,只说下自己的见解吧。
rpc就是远程过程调用协议,粗俗的讲就是服务器A调用服务器B用到的协议,说下这几天大致的了解吧,rpc我了解到的技术有apach公司发布的HttpClient,对于HttpClient的简单使用,大家可以看我的另外一篇博客啦。
在我自学springcloud的时候,我还看到了个另外的概念,SOA和SOAP,自学了解了下他们的区别,顺便也做一个总结吧
SOA(面向服务编程)架构的特点:(别的博客大佬说的)
SOA架构的底层实现通过WebService和ESB(xml与中间件混合物),Web Service技术是SOA服务化的一种实现方式,WebService底层采用soap协议进行通讯,soap协议就是Http或者是Https通道传输XML数据实现的协议。
SOA架构中通常使用XML方式实现通讯,在高并发情况下XML比较冗余会带来极大的影响,所以最后微服务架构中采用JSON替代xml方式
四、该说重点了---注册中心的配置和搭建
作为小白,我还在研究,就不能说我能说清原理,我写博客的宗旨只是给自己做个移动的文本笔记。
1、pom.xml依赖导入文件
UTF-8
UTF-8
1.8
Greenwich.SR1
org.springframework.boot
spring-boot-starter-parent
2.1.4.RELEASE
org.springframework.cloud
spring-cloud-starter-netflix-eureka-server
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
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false
2、application.yml配置文件信息
###服务端口号
server:
port: 8100
###eureka 基本信息配置
eureka:
instance:
###注册到eurekaip地址
hostname: 127.0.0.1
client:
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka
###因为自己是为注册中心,不需要自己注册自己(集群的时候 此处需要设置为true)
register-with-eureka: false
###因为自己是为注册中心,不需要检索服务
fetch-registry: false
3、启动类的配置
package com.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@EnableEurekaServer //标注为注册中心
@SpringBootApplication
public class ApplicationEurekaCenter8100 {
public static void main(String[] args) {
SpringApplication.run(ApplicationEurekaCenter8100.class, args);
}
}
五、注册中心下的生产者的服务注册
1、pom.xml文件的配置
UTF-8
UTF-8
1.8
org.springframework.boot
spring-boot-starter-parent
2.1.4.RELEASE
org.springframework.cloud
spring-cloud-dependencies
Finchley.M7
pom
import
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-starter-netflix-eureka-client
spring-milestones
Spring Milestones
https://repo.spring.io/libs-milestone
false
2、application.yml文件的配置
server:
port: 8111 #注册自己的服务端口
spring:
application:
name: spring-cloud-product #在服务中心之中注册使用的别名
eureka:
client:
service-url:
defaultZone: http://localhost:8100/eureka #服务注册中心所使用到的地址
register-with-eureka: true #需要向服务注册中心注册这个服务
fetch-registry: true #需要从注册中心上获取信息
3、启动类的配置
package com.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
@EnableEurekaClient //表明自己是服务(需要注册到服务中心上)
@SpringBootApplication
public class ApplicationEurekaProduct8111 {
public static void main(String[] args) {
SpringApplication.run(ApplicationEurekaProduct8111.class, args);
}
}
六、注册中心下的消费者服务注册
1、pom.xml配置和生产者的pom一致,application.yml配置一致(不同的是端口号不同和注册中心上用于注册的别名不同)
2、启动类一致
3、消费者需要远程调用生产者提供的接口
package com.example.api.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 TestController {
@Autowired
private RestTemplate restTemplate;
@RequestMapping("/getInfoFromProduct")
public String getInfoFromProduct(){
String url = "http://SPRING-CLOUD-PRODUCT/getMember";
String result = restTemplate.getForObject(url, String.class);
return result;
}
}
org.springframework.web.client.RestTemplate虽然是springboot对HttpClient的一种封装,但需要使用,需要将其加载至springboot的容器中。
package com.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;
@EnableEurekaClient //表明自己需要注册到服务中心上
@SpringBootApplication
public class ApplicationEurekaConsumer8102 {
public static void main(String[] args) {
SpringApplication.run(ApplicationEurekaConsumer8102.class, args);
}
@Bean
@LoadBalanced //此注解让这个RestTemplate具有负载均衡的能力;其次,如果restTemplate以“别名”的形式调用生产者的api时,则必须引入
public RestTemplate restTemplate(){
return new RestTemplate();
}
}
我们都知道,可以直接使用
String result2 = restTemplate.getForObject("http://localhost:8111/getMember", String.class);
也可以实现远程的调用,但有一点,此处如果这么配置,当你的生产者的端口信息发生更改后,此处也需要修改,过于繁琐,所以可以直接使用生产者注册到注册中心的别名进行调用(别名就是封装了目标的ip地址和端口号信息)。
嗯嗯~突然想起一个坑。
之前最开始的配置,我使用别名请求,但提示未找到服务,找了半天的bug,才知道我将RestTemplate注入到spring容器中时,没有配置 @LoadBalanced 注解,这个注解不止是有负载均衡的能力,他还可以让你通过注册中心上的别名进行调用指定的服务!