We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
When I upload the file, I want to have other Parameters along with it. String is fine, but Integer is displayed in Parameters, which should be wrong
This is the code:
@PostMapping(consumes = MediaType.MULTIPART_FORM_DATA_VALUE) @Operation(summary = "test") public Mono<Response<Void>> test( @RequestPart("strValue") String strValue, @RequestPart("intValue") Integer intValue, @RequestPart("fileA") FilePart fileA, @RequestPart("fileB") FilePart fileB ){ return Mono.empty(); }
This is the generated page:
Is there any other way I can fix this? Thanks for any answer
The text was updated successfully, but these errors were encountered:
71cf529
No branches or pull requests
Describe the bug
When I upload the file, I want to have other Parameters along with it. String is fine, but Integer is displayed in Parameters, which should be wrong
This is the code:
@PostMapping(consumes = MediaType.MULTIPART_FORM_DATA_VALUE) @Operation(summary = "test") public Mono<Response<Void>> test( @RequestPart("strValue") String strValue, @RequestPart("intValue") Integer intValue, @RequestPart("fileA") FilePart fileA, @RequestPart("fileB") FilePart fileB ){ return Mono.empty(); }
This is the generated page:
Is there any other way I can fix this? Thanks for any answer
The text was updated successfully, but these errors were encountered: