SpringCloud微服务-服务注册于发现

SpringCloud微服务-服务注册于发现

  • 服务治理 SpringCloud
  1. 什么是服务治理
    在传统RPC远程调用中,服务与服务依赖关系管理比较复杂,所以需要使用服务治理来管理服务于服务之间依赖关系,可以实现服务调用、负载均衡、容错等,实现服务发现与注册
  2. 服务注册与发现
    在服务注册于发现中,有一个注册中心,当服务器启动的时候,会把当前自己服务器的信息 比如:服务地址、通信地址等以别名方式注册到注册中心上,另一个,以改别名的方式去注册中心上获取到实际的通讯地址,然后再实现RPC调用
  3. SpringCloud中支持三种注册中心
    Eureka、Consul(go语言编写)、Zookeeper
  4. 注册中心为了做什么
    管理每个服务之间的依赖关系,服务治理、注册中心与发现能够实现负载均衡,管理服务于服务之间的依赖
  • 服务治理 SpringCloud Eureka 环境搭建
  1. 注册中心环境搭建
    Maven依赖

				org.springframework.boot
				spring-boot-starter-parent
				2.0.1.RELEASE
			
			
			
			
				
					
						org.springframework.cloud
						spring-cloud-dependencies
						Finchley.M7
						pom
						import
					
				
			
			
				
				
					org.springframework.cloud
					spring-cloud-starter-netflix-eureka-server
				
			
			
			
			
				
					spring-milestones
					Spring Milestones
					https://repo.spring.io/libs-milestone
					
						false
					
				
			

application.yml

	###服务端口号
	server:
	  port: 8100
	###eureka 基本信息配置
	eureka:
	  instance:
	    ###注册到eurekaip地址
	    hostname: 127.0.0.1
	  client:
	    serviceUrl:
	      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
	###因为自己是为注册中心,不需要自己注册自己
	    register-with-eureka: false
	###因为自己是为注册中心,不需要检索服务
	    fetch-registry: false
	```
启动Eureka服务
		

//@EnableEurekaServer作用:开启eurekaServer
@EnableEurekaServer
@SpringBootApplication
public class AppEureka {

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

}
```

SpringCloud微服务-服务注册于发现_第1张图片
3. 注册服务提供者
Maven依赖信息


	
		org.springframework.boot
		spring-boot-starter-parent
		2.0.1.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
			
		
	

application.yml

###服务启动端口号
server:
  port: 8000
###服务名称(服务注册到eureka名称(别名))  
spring:
    application:
        name: app-dawn-member        
###服务注册到eureka地址
eureka:
  client:
    service-url:
           defaultZone: http://localhost:8100/eureka
           
###因为该应用为注册中心,不会注册自己
    register-with-eureka: true
###是否需要从eureka上获取注册信息
    fetch-registry: true

服务接口

@RestController
public class MemberController {

	@RequestMapping("/getMember")
	public String getMember() {
		return "this is getMember";
	}
}

启动提供者服务

@SpringBootApplication
@EnableEurekaClient
public class AppMember {

	public static void main(String[] args) {
		SpringApplication.run(AppMember.class, args);
	}
}
5. 服务消费者

Maven依赖信息


		org.springframework.boot
		spring-boot-starter-parent
		2.0.1.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
			
		
	

application.yml

###服务启动端口号
server:
  port: 8001
###服务名称(服务注册到eureka名称)  
spring:
    application:
        name: app-dawn-order
###服务注册到eureka地址
eureka:
  client:
    service-url:
           defaultZone: http://localhost:8100/eureka

###因为该应用为注册中心,不会注册自己
    register-with-eureka: true
###是否需要从eureka上获取注册信息
    fetch-registry: true

使用rest方式调用服务

@RestController
public class OrderController {
	@Autowired
	private RestTemplate restTemplate;

	@RequestMapping("/getorder")
	public String getOrder() {
		// order 使用rpc 远程调用技术 调用 会员服务
		String memberUrl = "http://app-dawn-member/getMember";
		String result = restTemplate.getForObject(memberUrl, String.class);
		System.out.println("会员服务调用订单服务,result:" + result);
		return result;
	}

}


启动消费者

@SpringBootApplication
@EnableEurekaClient
public class AppOrder {

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

	//@LoadBanlanced就能让这个RestTemplat在请求时拥有客户负载均衡的能力
	@Bean
	@LoadBalanced
	RestTemplate restTemplate() {
		return new RestTemplate();
	}

}
6. 高可用注册中心

默认情况下Eureka是让服务注册中心不注册自己,高可用实际上将自己作为服务向其他服务注册中心注册自己,这样就可以形成一组相互注册的服务注册中心,从而实现服务清单的相互同步,达到高可用效果

###因为该应用为注册中心,不会注册自己
    register-with-eureka: true
###不需要去注册中心上检索服务
    fetch-registry: true
7. Eureka集群环境搭建

Eure01配置

###服务端口号
server:
  port: 8100
###eureka 基本信息配置
spring: 
 application: 
  name: eureka-server
eureka:
  instance:
    ###注册到eurekaip地址
    hostname: 127.0.0.1
  client:
    serviceUrl:
      defaultZone: http://127.0.0.1:8200/eureka/
###因为自己是为注册中心,不需要自己注册自己
    register-with-eureka: true
###因为自己是为注册中心,不需要检索服务
    fetch-registry: true

Eureka02配置

###服务端口号
server:
  port: 8200
###eureka 基本信息配置
spring: 
 application: 
  name: eureka-server
eureka:
  instance:
    ###注册到eurekaip地址
    hostname: 127.0.0.1
  client:
    serviceUrl:
      defaultZone: http://127.0.0.1:8100/eureka/
###因为自己是为注册中心,不需要自己注册自己
    register-with-eureka: true
###因为自己是为注册中心,不需要检索服务
    fetch-registry: true

客户端继承Eureka集群

server:
  port: 8000
spring:
  application:
    name: app-dawn-member
#eureka:
#  client:
#    service-url:
#      defaultZone: http://localhost:8100/eureka
###集群地址
eureka:
  client:
    service-url:
           defaultZone: http://localhost:8100/eureka,http://localhost:8200/eureka    
    register-with-eureka: true
    fetch-registry: true
  • 服务治理 SpringCloud Eureka
    1. 搭建eureka集群环境,至少2台以上
    2. 为甚会产生Eureka自我保护机制
    3. 如果服务真的宕机的情况
  • 服务治理 SpringCloud Zookeeper 替代Eureka作为注册中心

你可能感兴趣的:(微服务)