我需要为微服务列表创建一个专用的配置服务器。以下是配置服务器的 application.yml 片段:
server.port: 8888
management.security.enabled: false
spring:
cloud:
config:
server:
git:
uri: some github link
username: ENC(/YNsVqtbBwIOq+KlzzQrn6WZbg1tPxzn9V0BM=)
password: ENC(+jatkfs906vfPwqPxtkgBn3LeVGr)
search-paths:
- microcervices1
- microservices2
- microservices3
jasypt:
encryptor:
algorithm: some algorithm
password: Its password
我在访问这些微服务配置时遇到了问题。
文档http://cloud.spring.io/spring-cloud-config/spring-cloud-config.html#_spring_cloud_config_server提到通配符 {application}、{label}、{profile} 可以在 searchPaths 变量中使用,以便“您可以隔离路径中的目录”
如果有人可以帮助我解决这个问题,那将是一个很大的帮助,谢谢!