Package org.springframework.web.multipart.support

Support classes for the multipart resolution framework.

See:
          Description

Class Summary
AbstractMultipartHttpServletRequest Abstract base implementation of the MultipartHttpServletRequest interface.
ByteArrayMultipartFileEditor Custom PropertyEditor for converting MultipartFiles to byte arrays.
DefaultMultipartHttpServletRequest Default implementation of the MultipartHttpServletRequest interface.
MultipartFilter Servlet 2.3 Filter that resolves multipart requests via a MultipartResolver.
RequestPartServletServerHttpRequest ServerHttpRequest implementation that accesses one part of a multipart request.
StandardMultipartHttpServletRequest Spring MultipartHttpServletRequest adapter, wrapping a Servlet 3.0 HttpServletRequest and its Part objects.
StandardServletMultipartResolver Standard implementation of the MultipartResolver interface, based on the Servlet 3.0 Part API.
StringMultipartFileEditor Custom PropertyEditor for converting MultipartFiles to Strings.
 

Exception Summary
MissingServletRequestPartException Raised when the part of a "multipart/form-data" request identified by its name cannot be found.
 

Package org.springframework.web.multipart.support Description

Support classes for the multipart resolution framework. Contains property editors for multipart files, and a servlet filter for multipart handling without Spring's web MVC.