Problem running the samples
I ran the SVN config server and client example, and I removed the default for the name property (i.e., World), and the example fails. Can you please explain what should be happening? The example only works if the default value is in place. It appears that the value isn't pulled properly from SVN. Thanks!
Likely this sample is broken.
OK, thanks for the quick reply! Can you briefly describe how it should work? In other words, what file(s) should exist in SVN for this example to work?
Having the same problem. Anyone knows how to fix this?
All right, I fixed the problem by replacing the dependency that is wrong:
replaced
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter</artifactId>
</dependency>
by
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
@kabennett give it a try.