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
LOGGER.info("Converted parameters [{}] from byte[] to String in operation [{}]", convertedParams.stream().map(param -> param.paramName).collect(Collectors.toList()), operation.operationId);
835
836
}
836
837
838
+
/**
839
+
* Marks form parameters that are in multipart/form-data operations for special handling in reactive mode.
840
+
* <p>
841
+
* In reactive Spring WebFlux, multipart/form-data parameters must use @RequestPart instead of @RequestParam,
842
+
* and non-model parameters (primitives, enums, strings) must be received as String or Flux<String> and
843
+
* converted manually in the implementation.
844
+
* </p>
845
+
*
846
+
* @param operation the codegen operation whose parameters will be marked if necessary
0 commit comments