类 MultipartHttpMessageReader

java.lang.Object
cn.taketoday.http.codec.LoggingCodecSupport
cn.taketoday.http.codec.multipart.MultipartHttpMessageReader
所有已实现的接口:
HttpMessageReader<cn.taketoday.util.MultiValueMap<String,Part>>

public class MultipartHttpMessageReader extends LoggingCodecSupport implements HttpMessageReader<cn.taketoday.util.MultiValueMap<String,Part>>
HttpMessageReader for reading "multipart/form-data" requests into a MultiValueMap<String, Part>.

Note that this reader depends on access to an HttpMessageReader<Part> for the actual parsing of multipart content. The purpose of this reader is to collect the parts into a map.

从以下版本开始:
4.0
作者:
Rossen Stoyanchev