服务器config-server中加载git上的配置文件
程序员文章站
2022-07-04 16:01:08
...
在config-server中加上
eureka.instance.preferIpAddress=true
eureka.instance.instance-id=${spring.cloud.client.ipAddress}:${server.port}
依旧无法加载git上面的配置文件是应为eureka上面的ip地址其实还是被影藏了,具体什么原因还没弄清楚,不过给出我的解决方法
#如果服务器上的ip地址和config.uri不一致,注释掉spring.cloud.config.discovery.serviceId= config-server
这样加载bootstrap.properties的 时候,就不会去fetch---config-server这个错误ip地址,而是直接加载加载----spring.cloud.config.uri= http://服务器ip:20412/
然后启动服务,就能直接加载git上面的配置文件