从天气项目看 Spring Cloud 微服务治理| |微服务注册与发现
这章节,我们需要通过SpringCloud的微服务把之前写的四个微服务关联起来
通过两个角色之间的关系:
客户端和服务注册端
服务端:
msa-weather-eureka-server
我们先创建一个服务端类,并让服务端不注册自己
引入依赖:
dependencies {
compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-server')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
在启动类添加注解
修改配置文件
启动服务:
因为没有注册进来的服务所以没有显示客户端注册进来的信息
接下来我们来修改上一章节的四个微服务
msa-weather-collection-eureka
1、添加依赖
// Eureka Client
compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client')
2、添加启动类的注解
注解使服务发现
3、修改配置文件
指向8761端口的服务
msa-weather-data-eureka
1、添加依赖
// Eureka Client
compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client')
2、添加启动类的注解
3、修改配置文件
msa-weather-city-eureka
1、添加依赖
// Eureka Client
compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client')
2、添加启动类的注解
3、修改配置文件
msa-weather-report-eureka
1、添加依赖
// Eureka Client
compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client')
2、添加启动类的注解
3、修改配置文件
启动服务:msa-weather-eureka-server
对于其他服务通过命令行来启动,不然在IDEA都会占用8080端口,对于其他客户端微服务都启动两个实例
msa-weather-eureka-server server port :8761
msa-weather-collection-server server port :8081
msa-weather-collection-server server port :8082
msa-weather-data-server server port :8083
msa-weather-data-server server port :8084
msa-weather-city-server server port :8085
msa-weather-city-server server port :8086
msa-weather-report-server server port :8087
msa-weather-report-server server port :8088
结果如下: