网关服务gateway启动时,初始化Consul相关配置时报错。
Consul service ids must not be empty, must start with a letter, end with a letter or digit, and have as interior characters only letters, digits, and hyphen: cbda-server-gateway:10.111.236.142:30857
详细的错误信息如下:
网关gateway的 bootstrap.yml如下:
spring:
main:
allow-bean-definition-overriding: true
application:
name: cbda-server-gateway
cloud:
consul:
host: 10.111.236.142
port: 8500
config:
enabled: true #false禁用Consul配置,默认true
format: YAML # 表示consul上面文件的格式 有四种 YAML PROPERTIES KEY-VALUE FILES
data-key: data #表示consul上面的KEY值(或者说文件的名字) 默认是data
prefix: config # 设置配置值的基本文件夹
defaultContext: cbda-server-gateway # 设置所有应用程序使用的文件夹名称
#profileSeparator # 设置用于使用配置文件在属性源中分隔配置文件名称的分隔符的值
# 服务发现配置
discovery:
# 启用服务发现
enabled: true
# 启用服务注册
register: true
# 服务停止时取消注册
deregister: true
# 表示注册时使用IP而不是hostname
prefer-ip-address: true
# 关闭consul健康监测
register-health-check: true
# 执行监控检查的频率
health-check-interval: 30s
# 设置健康检查失败多长时间后,取消注册
health-check-critical-timeout: 30s
# 健康检查的路径
health-check-path: /soa_actuator/health
# 服务注册标识,格式为:应用名称+服务器IP+端口
instance-id: ${spring.application.name}:${spring.cloud.client.ip-address}:${server.port}
分析:
网关服务gateway在初始化Consul的相关配置时,未读取到ip,导致相关配置内初始化失败,就未能初始化instance-id。修改配置如下:
spring:
main:
allow-bean-definition-overriding: true
application:
name: cbda-server-gateway
cloud:
consul:
host: 10.111.236.142
port: 8500
config:
enabled: true #false禁用Consul配置,默认true
format: YAML # 表示consul上面文件的格式 有四种 YAML PROPERTIES KEY-VALUE FILES
data-key: data #表示consul上面的KEY值(或者说文件的名字) 默认是data
prefix: config # 设置配置值的基本文件夹
defaultContext: cbda-server-gateway # 设置所有应用程序使用的文件夹名称
#profileSeparator # 设置用于使用配置文件在属性源中分隔配置文件名称的分隔符的值
# 服务发现配置
discovery:
# 启用服务发现
enabled: true
# 启用服务注册
register: true
# 服务停止时取消注册
deregister: true
# 表示注册时使用IP而不是hostname
prefer-ip-address: true
# 关闭consul健康监测
register-health-check: true
# 执行监控检查的频率
health-check-interval: 30s
# 设置健康检查失败多长时间后,取消注册
health-check-critical-timeout: 30s
# 健康检查的路径
health-check-path: /soa_actuator/health
# 服务注册标识,格式为:应用名称+服务器IP+端口
#instance-id: ${spring.application.name}:${spring.cloud.client.ip-address}:${server.port}
instance-id: ${spring.application.name}:${random.value}
最终服务能正常启动。文章来源:https://www.toymoban.com/news/detail-832618.html
参考:The Spring Cloud project throws exception when generating document. · Issue #404 · spring-cloud/spring-cloud-consul · GitHub文章来源地址https://www.toymoban.com/news/detail-832618.html
到了这里,关于网关服务gateway注册Consul时报错Consul service ids must not be empty的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!