类 DefaultMultipartActionRequest
- java.lang.Object
- javax.portlet.filter.PortletRequestWrapper
- javax.portlet.filter.ActionRequestWrapper
- org.springframework.web.portlet.multipart.DefaultMultipartActionRequest
public class DefaultMultipartActionRequest extends ActionRequestWrapper implements MultipartActionRequest
Default implementation of theMultipartActionRequestinterface. Provides management of pre-generated parameter values.- 从以下版本开始:
- 2.0
- 作者:
- Juergen Hoeller, Arjen Poutsma
- 另请参阅:
PortletMultipartResolver
嵌套类概要
从接口继承的嵌套类/接口 javax.portlet.PortletRequest
PortletRequest.P3PUserInfos
字段概要
从接口继承的字段 javax.portlet.ActionRequest
ACTION_NAME
从接口继承的字段 javax.portlet.PortletRequest
ACTION_PHASE, ACTION_SCOPE_ID, BASIC_AUTH, CCPP_PROFILE, CLIENT_CERT_AUTH, DIGEST_AUTH, EVENT_PHASE, FORM_AUTH, LIFECYCLE_PHASE, RENDER_HEADERS, RENDER_MARKUP, RENDER_PART, RENDER_PHASE, RESOURCE_PHASE, USER_INFO
构造器概要
构造器 限定符 构造器 说明 protectedDefaultMultipartActionRequest(ActionRequest request)Wrap the given Portlet ActionRequest in a MultipartActionRequest.DefaultMultipartActionRequest(ActionRequest request, MultiValueMap<String,MultipartFile> mpFiles, Map<String,String[]> mpParams, Map<String,String> mpParamContentTypes)Wrap the given Portlet ActionRequest in a MultipartActionRequest.
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 MultipartFilegetFile(String name)Return the contents plus description of an uploaded file in this request, ornullif it does not exist.Map<String,MultipartFile>getFileMap()Return aMapof the multipart files contained in this request.Iterator<String>getFileNames()Return anIteratorof String objects containing the parameter names of the multipart files contained in this request.List<MultipartFile>getFiles(String name)Return the contents plus description of uploaded files in this request, or an empty list if it does not exist.MultiValueMap<String,MultipartFile>getMultiFileMap()Return aMultiValueMapof the multipart files contained in this request.StringgetMultipartContentType(String paramOrFileName)Determine the content type of the specified request part.protected MultiValueMap<String,MultipartFile>getMultipartFiles()Obtain the MultipartFile Map for retrieval, lazily initializing it if necessary.protected Map<String,String>getMultipartParameterContentTypes()Obtain the multipart parameter content type Map for retrieval, lazily initializing it if necessary.protected Map<String,String[]>getMultipartParameters()Obtain the multipart parameter Map for retrieval, lazily initializing it if necessary.StringgetParameter(String name)Map<String,String[]>getParameterMap()Enumeration<String>getParameterNames()String[]getParameterValues(String name)protected voidinitializeMultipart()Lazily initialize the multipart request, if possible.protected voidsetMultipartFiles(MultiValueMap<String,MultipartFile> multipartFiles)Set a Map with parameter names as keys and list of MultipartFile objects as values.protected voidsetMultipartParameterContentTypes(Map<String,String> multipartParameterContentTypes)Set a Map with parameter names as keys and content type Strings as values.protected voidsetMultipartParameters(Map<String,String[]> multipartParameters)Set a Map with parameter names as keys and String array objects as values.从类继承的方法 javax.portlet.filter.ActionRequestWrapper
getCharacterEncoding, getContentLength, getContentType, getMethod, getPortletInputStream, getReader, getRequest, setCharacterEncoding, setRequest
从类继承的方法 javax.portlet.filter.PortletRequestWrapper
getAttribute, getAttributeNames, getAuthType, getContextPath, getCookies, getLocale, getLocales, getPortalContext, getPortletMode, getPortletSession, getPortletSession, getPreferences, getPrivateParameterMap, getProperties, getProperty, getPropertyNames, getPublicParameterMap, getRemoteUser, getRequestedSessionId, getResponseContentType, getResponseContentTypes, getScheme, getServerName, getServerPort, getUserPrincipal, getWindowID, getWindowState, isPortletModeAllowed, isRequestedSessionIdValid, isSecure, isUserInRole, isWindowStateAllowed, removeAttribute, setAttribute, setRequest
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
从接口继承的方法 javax.portlet.ClientDataRequest
getCharacterEncoding, getContentLength, getContentType, getMethod, getPortletInputStream, getReader, setCharacterEncoding
从接口继承的方法 javax.portlet.PortletRequest
getAttribute, getAttributeNames, getAuthType, getContextPath, getCookies, getLocale, getLocales, getPortalContext, getPortletMode, getPortletSession, getPortletSession, getPreferences, getPrivateParameterMap, getProperties, getProperty, getPropertyNames, getPublicParameterMap, getRemoteUser, getRequestedSessionId, getResponseContentType, getResponseContentTypes, getScheme, getServerName, getServerPort, getUserPrincipal, getWindowID, getWindowState, isPortletModeAllowed, isRequestedSessionIdValid, isSecure, isUserInRole, isWindowStateAllowed, removeAttribute, setAttribute
构造器详细资料
DefaultMultipartActionRequest
public DefaultMultipartActionRequest(ActionRequest request, MultiValueMap<String,MultipartFile> mpFiles, Map<String,String[]> mpParams, Map<String,String> mpParamContentTypes)
Wrap the given Portlet ActionRequest in a MultipartActionRequest.- 参数:
request- the request to wrapmpFiles- a map of the multipart filesmpParams- a map of the parameters to expose, with Strings as keys and String arrays as values
DefaultMultipartActionRequest
protected DefaultMultipartActionRequest(ActionRequest request)
Wrap the given Portlet ActionRequest in a MultipartActionRequest.- 参数:
request- the request to wrap
方法详细资料
getFileNames
public Iterator<String> getFileNames()
从接口复制的说明:MultipartRequestReturn anIteratorof String objects containing the parameter names of the multipart files contained in this request. These are the field names of the form (like with normal parameters), not the original file names.- 指定者:
getFileNames在接口中MultipartRequest- 返回:
- the names of the files
getFile
public MultipartFile getFile(String name)
从接口复制的说明:MultipartRequestReturn the contents plus description of an uploaded file in this request, ornullif it does not exist.- 指定者:
getFile在接口中MultipartRequest- 参数:
name- a String specifying the parameter name of the multipart file- 返回:
- the uploaded content in the form of a
MultipartFileobject
getFiles
public List<MultipartFile> getFiles(String name)
从接口复制的说明:MultipartRequestReturn the contents plus description of uploaded files in this request, or an empty list if it does not exist.- 指定者:
getFiles在接口中MultipartRequest- 参数:
name- a String specifying the parameter name of the multipart file- 返回:
- the uploaded content in the form of a
MultipartFilelist
getFileMap
public Map<String,MultipartFile> getFileMap()
从接口复制的说明:MultipartRequestReturn aMapof the multipart files contained in this request.- 指定者:
getFileMap在接口中MultipartRequest- 返回:
- a map containing the parameter names as keys, and the
MultipartFileobjects as values
getMultiFileMap
public MultiValueMap<String,MultipartFile> getMultiFileMap()
从接口复制的说明:MultipartRequestReturn aMultiValueMapof the multipart files contained in this request.- 指定者:
getMultiFileMap在接口中MultipartRequest- 返回:
- a map containing the parameter names as keys, and a list of
MultipartFileobjects as values
getParameterNames
public Enumeration<String> getParameterNames()
- 指定者:
getParameterNames在接口中PortletRequest- 覆盖:
getParameterNames在类中PortletRequestWrapper
getParameter
public String getParameter(String name)
- 指定者:
getParameter在接口中PortletRequest- 覆盖:
getParameter在类中PortletRequestWrapper
getParameterValues
public String[] getParameterValues(String name)
- 指定者:
getParameterValues在接口中PortletRequest- 覆盖:
getParameterValues在类中PortletRequestWrapper
getParameterMap
public Map<String,String[]> getParameterMap()
- 指定者:
getParameterMap在接口中PortletRequest- 覆盖:
getParameterMap在类中PortletRequestWrapper
getMultipartContentType
public String getMultipartContentType(String paramOrFileName)
从接口复制的说明:MultipartRequestDetermine the content type of the specified request part.- 指定者:
getMultipartContentType在接口中MultipartRequest- 参数:
paramOrFileName- the name of the part- 返回:
- the associated content type, or
nullif not defined
setMultipartFiles
protected final void setMultipartFiles(MultiValueMap<String,MultipartFile> multipartFiles)
Set a Map with parameter names as keys and list of MultipartFile objects as values. To be invoked by subclasses on initialization.
getMultipartFiles
protected MultiValueMap<String,MultipartFile> getMultipartFiles()
Obtain the MultipartFile Map for retrieval, lazily initializing it if necessary.
setMultipartParameters
protected final void setMultipartParameters(Map<String,String[]> multipartParameters)
Set a Map with parameter names as keys and String array objects as values. To be invoked by subclasses on initialization.
getMultipartParameters
protected Map<String,String[]> getMultipartParameters()
Obtain the multipart parameter Map for retrieval, lazily initializing it if necessary.
setMultipartParameterContentTypes
protected final void setMultipartParameterContentTypes(Map<String,String> multipartParameterContentTypes)
Set a Map with parameter names as keys and content type Strings as values. To be invoked by subclasses on initialization.
getMultipartParameterContentTypes
protected Map<String,String> getMultipartParameterContentTypes()
Obtain the multipart parameter content type Map for retrieval, lazily initializing it if necessary.
initializeMultipart
protected void initializeMultipart()
Lazily initialize the multipart request, if possible. Only called if not already eagerly initialized.