We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aaf27f commit fa3b820Copy full SHA for fa3b820
springdoc-openapi-common/src/main/java/org/springdoc/core/GenericParameterService.java
@@ -60,6 +60,7 @@
60
import org.springframework.core.io.Resource;
61
import org.springframework.web.context.request.RequestScope;
62
import org.springframework.web.multipart.MultipartFile;
63
+import org.springframework.web.multipart.MultipartRequest;
64
65
/**
66
* The type Generic parameter builder.
@@ -91,6 +92,7 @@ public class GenericParameterService {
91
92
static {
93
FILE_TYPES.add(MultipartFile.class);
94
FILE_TYPES.add(Resource.class);
95
+ FILE_TYPES.add(MultipartRequest.class);
96
}
97
98
0 commit comments