- Eureka服务器eureka-service
- Hello微服务服务端hello-server
- Hello微服务客户端hello-client
- Zuul服务器zuul-service
校验:
http://localhost:8070/
在Eclipse IDE中,以定制配置方式运行hello-server微服务,
Run As -> Run Configurations -> Spring Boot App
配置服务启动端口Override Properties
第一次运行使用8071
服务器端口
server.port=8071
第二次运行使用8072
服务器端口
server.port=8072
UI校验:
http://localhost:8070/
API校验:
http://localhost:8070/eureka/apps
在Eclipse IDE中,以定制配置方式运行hello-client微服务,
Run As -> Run Configurations -> Spring Boot App
配置服务启动端口Override Properties
第一次运行使用8073
服务器端口
server.port=8073
第二次运行使用8074
服务器端口
server.port=8074
UI校验:
http://localhost:8070/
API校验:
http://localhost:8070/eureka/apps
通过浏览器或者Postman校验:
- 不启用Ribbon负载均衡 (zuul -> hello server)
http://localhost:8079/api/server/rest/hello/server
- 启用Ribbon负载均衡,(zuul/ribbon -> hello client/ribbon -> hello server)
http://localhost:8079/api/client/rest/hello/client