Bir uygulama için farklı profillere dayalı olarak, spring cloud yapılandırmasının desen eşleştirme özelliğini uygulamaya çalışıyorum. http://cloud.spring.io/spring-cloud-config/spring-cloud-config.html#_environment_repository'daki belgelere dayanarak, depoları profillere göre eşleştirmek mümkündür. Aşağıda, bir yapılandırma istemci uygulaması "kullanıcı" ve user.properties, user-development.properties var benim yapılandırma sunucusu application.ymlSpring cloud config desen profili eşleşti
server:
port: 8888
spring:
cloud:
config:
server:
git:
uri: ssh://[email protected]/sample/cloud-config-properties.git
repos:
development:
pattern:
-*/development
-*/staging
uri: ssh://[email protected]/development.git
test:
pattern:
-*/test
-*/perf
uri: ${HOME}/Documents/cloud-config-sample-test
olan belgelere dayanarak
user-test.properties - uygulama adından bağımsız olarak, eğer desen */development i, e localhost: 8888/user/development veya localhost: 8888/demo/development ile eşleşiyorsa, config sunucum profil kalıbıyla eşleşmeli ve uygun özellikleri getirmelidir. Ör: ssh dan demo-development.properties almalısınız http://localhost:8888/demo/development :
// [email protected]/development.git Ama uygulamada, varsayılan uri tüm profiller Mülkümün dosya demo yani kullanılır .properties uri'den döndürülür: ssh: // [email protected]/sample/cloud-config-properties.gitBu konuda herhangi bir işaretçi var mı?
DÜZENLEME: PatternMatching kaynak koduna bazı hata ayıklama sonra pom.xml
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>Brixton.M5</version>
<relativePath />
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-monitor</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>http://repo.spring.io/libs-snapshot-local</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-snapshots-continuous</id>
<name>Spring Snapshots Continuous</name>
<url>http://repo.spring.io/libs-snapshot-continuous-local</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/libs-milestone-local</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>spring-releases</id>
<name>Spring Releases</name>
<url>http://repo.spring.io/libs-release-local</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>http://repo.spring.io/libs-snapshot-local</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/libs-milestone-local</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
Hangi süreyi kullanıyorsunuz? – spencergibb
Brixton.M5 pom.xml: \t org.springframework.cloud \t yay bulut marş ebeveyn \t Brixton.M5 \t \t –