|
|
@@ -6,14 +6,14 @@ spring: |
|
|
|
issuer-uri: https://oidc.t-aaron.com |
|
|
|
cloud: |
|
|
|
consul: |
|
|
|
host: 172.16.1.31 # consul 所在服务地址 |
|
|
|
host: 172.16.5.12 # consul 所在服务地址 |
|
|
|
port: 8500 # consul 服务端口 |
|
|
|
discovery: |
|
|
|
enabled: true #默认true。Consul Discovery Client是否注册到注册中心。和register同时设置成false,就不需要起consul服务。 |
|
|
|
register: true #是否将服务注册到Consul集群中心.。这个参数和上面的enabled参数同时设置成false,应用才不会注册注册中心,才可以不起consul服务! |
|
|
|
deregister: true #默认true,服务停止时注销服务,即从服务列表中删除。设置成false的话,??? |
|
|
|
## consul ip地址 |
|
|
|
hostname: 172.16.1.31 |
|
|
|
hostname: 172.16.5.12 |
|
|
|
# 注册到consul的服务名称 |
|
|
|
service-name: ${spring.application.name} # 服务提供者名称,注册在consul上面的名字,在consul的调用中,是通过此名字调用的。默认服务名,不要改 |
|
|
|
instance-id: ${spring.application.name}:${spring.cloud.client.ip-address}:${server.port} #实例ID |