Package io.quarkus.vertx.http.runtime
Interface MultiPartConfig
public interface MultiPartConfig
A config for the settings related to HTTP multipart request handling.
-
Method Summary
Modifier and TypeMethodDescriptionOptional<List<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String>>A comma-separated list ofContentTypeto indicate whether a given multipart field should be handled as a file part.
-
Method Details
-
fileContentTypes
Optional<List<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String>> fileContentTypes()A comma-separated list ofContentTypeto indicate whether a given multipart field should be handled as a file part.You can use this setting to force HTTP-based extensions to parse a message part as a file based on its content type.
For now, this setting only works when using RESTEasy Reactive.
-