You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java
+72-4Lines changed: 72 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@
60
60
* @author Andy Wilkinson
61
61
* @author Brian Clozel
62
62
* @author Dmytro Nosan
63
+
* @author Kevin Strijbos
63
64
* @since 1.4.0
64
65
*/
65
66
publicclassRestTemplateBuilder {
@@ -506,6 +507,22 @@ public RestTemplateBuilder setReadTimeout(Duration readTimeout) {
506
507
this.interceptors);
507
508
}
508
509
510
+
/**
511
+
* Sets the bufferrequestbody value on the underlying
512
+
* {@link ClientHttpRequestFactory}.
513
+
* @param bufferRequestBody value of the bufferRequestBody parameter
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/client/RestTemplateBuilderTests.java
0 commit comments