From dc01917daed84640b46b22b4e7f895af719a6936 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Wed, 8 May 2019 12:21:00 +0200 Subject: [PATCH] Javadoc --- .../org/springframework/web/server/ServerWebExchange.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/web/server/ServerWebExchange.java b/spring-web/src/main/java/org/springframework/web/server/ServerWebExchange.java index 47a63d7fe5..d8cef56757 100644 --- a/spring-web/src/main/java/org/springframework/web/server/ServerWebExchange.java +++ b/spring-web/src/main/java/org/springframework/web/server/ServerWebExchange.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2018 the original author or authors. + * Copyright 2002-2019 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. @@ -136,6 +136,8 @@ public interface ServerWebExchange { *

Note: calling this method causes the request body to * be read and parsed in full and the resulting {@code MultiValueMap} is * cached so that this method is safe to call more than once. + *

Note:the {@linkplain Part#content() contents} of each + * part is not cached, and can only be read once. */ Mono> getMultipartData();