See gh-18281
This commit is contained in:
Johnny Lim
2019-09-19 13:12:44 +09:00
committed by Stephane Nicoll
parent 9f1243129c
commit b70be97cbf
6 changed files with 8 additions and 7 deletions

View File

@@ -1247,7 +1247,7 @@ include::{code-examples}/web/client/RestTemplateProxyCustomizationExample.java[t
=== Configure the TcpClient used by a Reactor Netty-based WebClient
When Reactor Netty is on the classpath a Reactor Netty-based `WebClient` is auto-configured.
To customize the client's handling of network connections, provide a `ClientHttpConnector` bean.
The following example configures a 60 second read timeout and adds a `ReadTimeoutHandler`:
The following example configures a 60 second connect timeout and adds a `ReadTimeoutHandler`:
[source,java,indent=0]
----

View File

@@ -727,7 +727,7 @@ For example, consider the following config in a file:
password: "secret"
----
If you run the application with the arguments `--spring.profiles.active=dev" you might expect `security.user.password` to be set to "`secret`", but this is not the case.
If you run the application with the argument `--spring.profiles.active=dev` you might expect `security.user.password` to be set to "`secret`", but this is not the case.
The nested document will be filtered because the main file is named `application-dev.yml`.
It is already considered to be profile-specific, and nested documents will be ignored.