Spring Cloud 服务的注册与发现之eureka客户端注册
1、在客户端maven项目中添加eureka客户端依赖
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency>
2、在工程application.yml文件中添加注册配置
#客户端注册
eureka:
client:
register-with-eureka: true #是否向注册中心注册自己 默认为true
fetch-registry: true #是否需要检索服务 默认为true
service-url:
defaultZone: http://eternity:1234qwer@localhost:4405/eureka/
可以简化为:
#客户端注册
eureka:
client:
service-url:
defaultZone: http://eternity:1234qwer@localhost:4405/eureka/
defaultZone配置的为Eureka的注册地址:
如果Eureka没有使用Security的安全用户认证,则配置路径为:
http://localhost:4405/eureka/ 即:http://server.host:server.port/eureka/
如果Eureka使用安全用户认证,需要加上账号密码。
http://eternity:1234qwer@localhost:4405/eureka/ 即:http://username:password@server.host:server.port/eureka/
3、配置成功后,启动注册中心、启动客户端,查看是否注册成功。
在应用里面显示配置成功。这就说明服务已经注册完成了。