From c77d5997dff05ef2157b7b99ad22c1bf7e3c9cef Mon Sep 17 00:00:00 2001 From: rstoyanchev Date: Fri, 11 Nov 2022 12:16:02 +0000 Subject: [PATCH] Update RestTemplate Javadoc Closes gh-29311 --- .../java/org/springframework/web/client/RestTemplate.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/client/RestTemplate.java b/spring-web/src/main/java/org/springframework/web/client/RestTemplate.java index 6cabd486269e..b7d13d4d2a96 100644 --- a/spring-web/src/main/java/org/springframework/web/client/RestTemplate.java +++ b/spring-web/src/main/java/org/springframework/web/client/RestTemplate.java @@ -79,14 +79,14 @@ * method API over underlying HTTP client libraries such as the JDK * {@code HttpURLConnection}, Apache HttpComponents, and others. RestTemplate * offers templates for common scenarios by HTTP method, in addition to the - * generalized {@code exchange} and {@code execute} methods that support + * generalized {@code exchange} and {@code execute} methods that support of * less frequent cases. * *

RestTemplate is typically used as a shared component. However, its * configuration does not support concurrent modification, and as such its * configuration is typically prepared on startup. If necessary, you can create * multiple, differently configured RestTemplate instances on startup. Such - * instances may use the same underlying {@link ClientHttpRequestFactory} + * instances may use the same the underlying {@link ClientHttpRequestFactory} * if they need to share HTTP client resources. * *

NOTE: As of 5.0 this class is in maintenance mode, with