Merge pull request #1266 from spring-operator/polish-urls-remaining-master

URL Cleanup
This commit is contained in:
Marcin Grzejszczak
2019-03-29 11:45:59 +01:00
committed by GitHub
9 changed files with 26 additions and 26 deletions

View File

@@ -932,7 +932,7 @@ If you want to find Zipkin through service discovery, you can pass the Zipkin's
[source,yaml]
----
spring.zipkin.baseUrl: http://zipkinserver/
spring.zipkin.baseUrl: https://zipkinserver/
----
To disable this feature just set `spring.zipkin.discoveryClientEnabled` to `false.
@@ -1181,7 +1181,7 @@ shows how to do that:
----
@Autowired RestTemplate restTemplate;
Traverson traverson = new Traverson(URI.create("http://some/address"),
Traverson traverson = new Traverson(URI.create("https://some/address"),
MediaType.APPLICATION_JSON, MediaType.APPLICATION_JSON_UTF8).setRestOperations(restTemplate);
// use Traverson
----