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.
MissingServletRequestPartException Raised when the part of a "multipart/form-data" request identified by its name cannot be found.
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.
StandardMultipartHttpServletRequest.StandardMultipartFile Spring MultipartFile adapter, wrapping a Servlet 3.0 Part object.
StandardServletMultipartResolver Standard implementation of the MultipartResolver interface, based on the Servlet 3.0 javax.servlet.http.Part API.
StringMultipartFileEditor Custom PropertyEditor for converting MultipartFiles to Strings.
 

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.