Uses of Interface
org.springframework.web.multipart.MultipartFile
Packages that use MultipartFile
Package
Description
A comprehensive set of Servlet API 6.0 mock objects, targeted at usage with
Spring's Web MVC framework.
Provides web-specific data binding functionality.
Multipart resolution framework for handling file uploads.
Support classes for the multipart resolution framework.
-
Uses of MultipartFile in org.springframework.mock.web
Classes in org.springframework.mock.web that implement MultipartFileMethods in org.springframework.mock.web that return MultipartFileModifier and TypeMethodDescriptionMethods in org.springframework.mock.web that return types with arguments of type MultipartFileModifier and TypeMethodDescriptionMockMultipartHttpServletRequest.getFileMap()
MockMultipartHttpServletRequest.getMultiFileMap()
Methods in org.springframework.mock.web with parameters of type MultipartFileModifier and TypeMethodDescriptionvoid
MockMultipartHttpServletRequest.addFile
(MultipartFile file) Add a file to this request. -
Uses of MultipartFile in org.springframework.web.bind
Method parameters in org.springframework.web.bind with type arguments of type MultipartFileModifier and TypeMethodDescriptionprotected void
WebDataBinder.bindMultipart
(Map<String, List<MultipartFile>> multipartFiles, MutablePropertyValues mpvs) Bind all multipart files contained in the given request, if any (in case of a multipart request). -
Uses of MultipartFile in org.springframework.web.multipart
Methods in org.springframework.web.multipart that return MultipartFileModifier and TypeMethodDescriptionReturn the contents plus description of an uploaded file in this request, ornull
if it does not exist.Methods in org.springframework.web.multipart that return types with arguments of type MultipartFileModifier and TypeMethodDescriptionMultipartRequest.getFileMap()
Return aMap
of the multipart files contained in this request.Return the contents plus description of uploaded files in this request, or an empty list if it does not exist.MultipartRequest.getMultiFileMap()
Return aMultiValueMap
of the multipart files contained in this request. -
Uses of MultipartFile in org.springframework.web.multipart.support
Methods in org.springframework.web.multipart.support that return MultipartFileModifier and TypeMethodDescriptionMethods in org.springframework.web.multipart.support that return types with arguments of type MultipartFileModifier and TypeMethodDescriptionAbstractMultipartHttpServletRequest.getFileMap()
AbstractMultipartHttpServletRequest.getMultiFileMap()
protected MultiValueMap<String,
MultipartFile> AbstractMultipartHttpServletRequest.getMultipartFiles()
Obtain the MultipartFile Map for retrieval, lazily initializing it if necessary.Method parameters in org.springframework.web.multipart.support with type arguments of type MultipartFileModifier and TypeMethodDescriptionprotected final void
AbstractMultipartHttpServletRequest.setMultipartFiles
(MultiValueMap<String, MultipartFile> multipartFiles) Set a Map with parameter names as keys and list of MultipartFile objects as values.Constructor parameters in org.springframework.web.multipart.support with type arguments of type MultipartFileModifierConstructorDescriptionDefaultMultipartHttpServletRequest
(HttpServletRequest request, MultiValueMap<String, MultipartFile> mpFiles, Map<String, String[]> mpParams, Map<String, String> mpParamContentTypes) Wrap the given HttpServletRequest in a MultipartHttpServletRequest.