diff --git a/spring-test/src/main/java/org/springframework/test/web/reactive/server/WebTestClient.java b/spring-test/src/main/java/org/springframework/test/web/reactive/server/WebTestClient.java index bbb33d61e3b..8e5c67fff2c 100644 --- a/spring-test/src/main/java/org/springframework/test/web/reactive/server/WebTestClient.java +++ b/spring-test/src/main/java/org/springframework/test/web/reactive/server/WebTestClient.java @@ -449,8 +449,9 @@ public interface WebTestClient { Builder responseTimeout(Duration timeout); /** - * Apply the given {@code Consumer} to this builder instance. + * Apply the given configurer to this builder instance. *
This can be useful for applying pre-packaged customizations.
+ * @param configurer the configurer to apply
*/
Builder apply(WebTestClientConfigurer configurer);
diff --git a/spring-web/src/main/java/org/springframework/web/client/RestOperations.java b/spring-web/src/main/java/org/springframework/web/client/RestOperations.java
index afc9baa2032..4b6fed59ecb 100644
--- a/spring-web/src/main/java/org/springframework/web/client/RestOperations.java
+++ b/spring-web/src/main/java/org/springframework/web/client/RestOperations.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2017 the original author or authors.
+ * Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -657,7 +657,7 @@ public interface RestOperations {
throws RestClientException;
- // general execution
+ // General execution
/**
* Execute the HTTP method to the given URI template, preparing the request with the
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 0b154ab753b..67539dddc31 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
@@ -193,7 +193,7 @@ public class RestTemplate extends InterceptingHttpAccessor implements RestOperat
/**
* Create a new instance of the {@link RestTemplate} using the given list of
* {@link HttpMessageConverter} to use.
- * @param messageConverters the list of {@link HttpMessageConverter} to use.
+ * @param messageConverters the list of {@link HttpMessageConverter} to use
* @since 3.2.7
*/
public RestTemplate(List Note: in 5.0 the switch from
* {@link org.springframework.web.util.DefaultUriTemplateHandler
* DefaultUriTemplateHandler} (deprecated in 4.3), as the default to use, to
* {@link DefaultUriBuilderFactory} brings in a different default for the
* {@code parsePath} property (switching from false to true).
- *
* @param handler the URI template handler to use
*/
public void setUriTemplateHandler(UriTemplateHandler handler) {
@@ -649,7 +647,7 @@ public class RestTemplate extends InterceptingHttpAccessor implements RestOperat
}
- // general execution
+ // General execution
/**
* {@inheritDoc}
@@ -817,7 +815,7 @@ public class RestTemplate extends InterceptingHttpAccessor implements RestOperat
}
/**
- * Returns a response extractor for {@link HttpHeaders}.
+ * Return a response extractor for {@link HttpHeaders}.
*/
protected ResponseExtractor Note: as of 5.1 this method ignores
* {@code "Forwarded"} and {@code "X-Forwarded-*"} headers that specify the
* client-originated address. Consider using the {@code ForwardedHeaderFilter}
* to extract and use, or to discard such headers.
- *
* @return a URI builder
*/
UriBuilder uriBuilder();