我有一个Spring Cloud项目。有配置服务器(config-srv),尤里卡服务器(eureka-srv)和其他带有业务逻辑的服务,我们称它为主服务(main-srv)。
我将它们包装到罐子里,一个罐一个地运行。我的应用程序从与jars相同目录中的文件中获取属性。
因此,我正在通过“ application-native.properties”将属性设置为config-srv。
但是,如果我想更改config-srv url(例如,我想要http://localhost:9999),如何在所有微服务启动之前为所有微服务共享该URL?我正在尝试在“ application-default.properties”中共享此网址,但没有任何效果。
答案 0 :(得分:1)
您可以将Spring Cloud Config服务器的详细信息放在每个微服务的bootstrap.properties文件中。
spring.application.name=microserviceName
spring.profiles.active=dev
spring.cloud.config.uri=http://localhost:9999
spring.cloud.config.username=your_username
spring.cloud.config.password=your_password
浏览链接以获取有关Spring Cloud配置的更多详细信息 https://howtodoinjava.com/spring-cloud/spring-cloud-config-server-git/