我正在尝试在我的 spring 云配置服务器中配置多个 gitlab 存储库
我将 bootstrap.properties 用于我的 spring 配置
下面是我的 bootstrap.properties 文件
server.port=8443
server.ssl.enabled=true
server.ssl.keyAlias=abc.com
server.ssl.key-store=/opt/jboss/security/abc.jks
server.ssl.key-store-password=abcd
config.server.configuration.dir=/opt/jboss/config/spring_config
config.server.user.name=user
config.server.user.password=password
spring.cloud.config.server.git.skip.ssl.validation=false
spring.cloud.config.server.git.user.name=username
spring.cloud.config.server.git.user.password=password
spring.cloud.config.server.git.uri=https://gitlab1.repo.com/testapi/config-files1.git
查看此文档后 https://cloud.spring.io/spring-cloud-config/multi/multi__spring_cloud_config_server.html
我尝试配置另一个仓库,如下所示
spring.cloud.config.server.git.uri.repos.repotwo.pattern=repotwo
spring.cloud.config.server.git.uri.repos.repotwo.uri=https://gitlab1.repo.com/testapi/config-files2.git
并尝试使用像这样的 url 访问文件
https://my.configserver.com:8443/repotwo/testfile/master
但它没有用。我提到的大多数文章都使用 .yml 文件而不是 bootstrap.properties。有人可以帮我吗?