spring Cloud 实现服务治理是由Netflix公司开发的Eureka。Netflix公司是美国加利福利亚的一家公司,主要业务是在线影片租赁。开发了一套分布式系统组件。Eureka是SpringCloud服务治理中心。
Eureka在使用Springboot 二次封装后,Eureka的使用就非常简易,它是一个服务应用,可以接收其他服务注册,也可以发现和治理服务实例。
服务治理中心是微服务(分布式)架构中的最基础最核心的功能组件,它主要对各个服务实例进行管理,包括服务注册和服务发现等,
首先要建立一个Eureka的服务治理中的EureKa_Server ,用Spring boot 的模块(module)放到Finance下,并且在依赖上选择Eureka Server和Web,之后建立pom.xml 建立依赖
将Eureka的包含的spring-cloud-starter-netflix-eureka-server引入到模块中。
spring-cloud-sample
com.cn.cloud
1.0
4.0.0
cloud-eureka
jar
org.springframework.boot
spring-boot-starter
org.springframework.boot
spring-boot-starter-security
org.springframework.cloud
spring-cloud-starter-netflix-eureka-server
cloud-eureka
org.springframework.boot
spring-boot-maven-plugin
com.cn.test.cloud.eureka.EurekaApplication
../target
repackage
package com.cn.test.cloud.eureka;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
/**
* Spring Boot应用类
*/
@SpringBootApplication
@EnableEurekaServer
public class EurekaApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaApplication.class, args);
}
}
EnableEurekaServer服务治理中心,上述代码是注解EnableEurekaServer它代表着Springboot 应用启动
需要配置文件
server:
port: 5001
#配置身份验证,和url的账号密码保持一致
spring:
security:
user:
name: keny #账号
password: keny1234 #密码
eureka:
environment: pro
client:
register-with-eureka: false # 当前服务不需要到eureka server上注册为客户端
fetch-registry: false # 是否检索服务
service-url: # eureka服务地址
# defaultZone: http://localhost:8761/eureka #不需要账号密码访问
defaultZone: http://keny:keny1234@localhost:5001/eureka #需要账号密码访问
spring.application.name :配置的Spring的应用的名称,也是微服务的名称,在Spring cloud的一个微服务可以拥有的多个实例
eureka.client.register-with-eureka:这个配置项是取消当前微服务,寻找其他Eureka服务治理中心的进行注册。
eureka.client.fetch-registry:取消服务获取功能,关于服务获取
eureka.client.serviceUrl.defaultZone:在我们的代码中,这个属于注释掉。
一般来说,我们都会一个微服务注册为多个实例,其中有2个原因
高可用的角度来说。即使有某个微服务是的实例不可用,那么其他微服务也可以继续使用。
第二个,从性能的角度来说。多个实例可以有效分摊大量的请求的压力。从而提高响应能力和吞吐能力。
搭建了服务治理中心后,接着你肯定需要注册自己的微服务及其实例
为了进行注册,Springboot 分别是user(用户) fund(资金)和product(理财)
user模块的pom.xml client的配置要引入spring-cloud-starter-netflix-eureka-client包
org.springframework.cloud
spring-cloud-starter-netflix-eureka-client
application.yml的配置client的文件
配置文件为:
eureka:
client:
serviceUrl:
defaultZone:http://keny:keny1234@localhost:5001/eureka
instance:
hostname: 192.168.1.100
server:
port:5001
spring:
application:
name:user
配置的默认的defaultZone是有默认的用户名和密码,当然也可以不用设置,直接进行注册。
UserApplication的代码如下:
package com.dachan.cloud.user.main;
//imports//
@SpringBootApplication
//新版本可以不用下EnableDiscoveryClient注解
public class UserApplication {
public static void main(String[] args){
SpringApplication.run(UserApplication.class ,args);
}
}
注意://新版本可以不用下EnableDiscoveryClient注解
关系图