类 MockMultipartHttpServletRequest
- java.lang.Object
- org.springframework.mock.web.MockHttpServletRequest
- org.springframework.mock.web.MockMultipartHttpServletRequest
public class MockMultipartHttpServletRequest extends MockHttpServletRequest implements MultipartHttpServletRequest
Mock implementation of theMultipartHttpServletRequestinterface.As of Spring 5.0, this set of mocks is designed on a Servlet 4.0 baseline.
Useful for testing application controllers that access multipart uploads.
MockMultipartFilecan be used to populate these mock requests with files.- 从以下版本开始:
- 2.0
- 作者:
- Juergen Hoeller, Eric Crampton, Arjen Poutsma
- 另请参阅:
MockMultipartFile
字段概要
从类继承的字段 org.springframework.mock.web.MockHttpServletRequest
DEFAULT_PROTOCOL, DEFAULT_REMOTE_ADDR, DEFAULT_REMOTE_HOST, DEFAULT_SCHEME, DEFAULT_SERVER_ADDR, DEFAULT_SERVER_NAME, DEFAULT_SERVER_PORT
从接口继承的字段 javax.servlet.http.HttpServletRequest
BASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH
构造器概要
构造器 构造器 说明 MockMultipartHttpServletRequest()Create a newMockMultipartHttpServletRequestwith a defaultMockServletContext.MockMultipartHttpServletRequest(ServletContext servletContext)Create a newMockMultipartHttpServletRequestwith the suppliedServletContext.
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidaddFile(MultipartFile file)Add a file to this request.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.HttpHeadersgetMultipartHeaders(String paramOrFileName)Return the headers associated with the specified part of the multipart request.HttpHeadersgetRequestHeaders()Return this request's headers as a convenient HttpHeaders instance.HttpMethodgetRequestMethod()Return this request's method as a convenient HttpMethod instance.从类继承的方法 org.springframework.mock.web.MockHttpServletRequest
addHeader, addParameter, addParameter, addParameters, addPart, addPreferredLocale, addUserRole, authenticate, changeSessionId, checkActive, clearAttributes, close, getAsyncContext, getAttribute, getAttributeNames, getAuthType, getCharacterEncoding, getContentAsByteArray, getContentAsString, getContentLength, getContentLengthLong, getContentType, getContextPath, getCookies, getDateHeader, getDispatcherType, getHeader, getHeaderNames, getHeaders, getInputStream, getIntHeader, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getMethod, getParameter, getParameterMap, getParameterNames, getParameterValues, getPart, getParts, getPathInfo, getPathTranslated, getProtocol, getQueryString, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRemoteUser, getRequestDispatcher, getRequestedSessionId, getRequestURI, getRequestURL, getScheme, getServerName, getServerPort, getServletContext, getServletPath, getSession, getSession, getUserPrincipal, invalidate, isActive, isAsyncStarted, isAsyncSupported, isRequestedSessionIdFromCookie, isRequestedSessionIdFromUrl, isRequestedSessionIdFromURL, isRequestedSessionIdValid, isSecure, isUserInRole, login, logout, removeAllParameters, removeAttribute, removeHeader, removeParameter, setAsyncContext, setAsyncStarted, setAsyncSupported, setAttribute, setAuthType, setCharacterEncoding, setContent, setContentType, setContextPath, setCookies, setDispatcherType, setLocalAddr, setLocalName, setLocalPort, setMethod, setParameter, setParameter, setParameters, setPathInfo, setPreferredLocales, setProtocol, setQueryString, setRemoteAddr, setRemoteHost, setRemotePort, setRemoteUser, setRequestedSessionId, setRequestedSessionIdFromCookie, setRequestedSessionIdFromURL, setRequestedSessionIdValid, setRequestURI, setScheme, setSecure, setServerName, setServerPort, setServletPath, setSession, setUserPrincipal, startAsync, startAsync, upgrade
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
从接口继承的方法 javax.servlet.http.HttpServletRequest
authenticate, changeSessionId, getAuthType, getContextPath, getCookies, getDateHeader, getHeader, getHeaderNames, getHeaders, getHttpServletMapping, getIntHeader, getMethod, getPart, getParts, getPathInfo, getPathTranslated, getQueryString, getRemoteUser, getRequestedSessionId, getRequestURI, getRequestURL, getServletPath, getSession, getSession, getTrailerFields, getUserPrincipal, isRequestedSessionIdFromCookie, isRequestedSessionIdFromUrl, isRequestedSessionIdFromURL, isRequestedSessionIdValid, isTrailerFieldsReady, isUserInRole, login, logout, newPushBuilder, upgrade
从接口继承的方法 javax.servlet.ServletRequest
getAsyncContext, getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentLengthLong, getContentType, getDispatcherType, getInputStream, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getParameter, getParameterMap, getParameterNames, getParameterValues, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRequestDispatcher, getScheme, getServerName, getServerPort, getServletContext, isAsyncStarted, isAsyncSupported, isSecure, removeAttribute, setAttribute, setCharacterEncoding, startAsync, startAsync
构造器详细资料
MockMultipartHttpServletRequest
public MockMultipartHttpServletRequest()
Create a newMockMultipartHttpServletRequestwith a defaultMockServletContext.
MockMultipartHttpServletRequest
public MockMultipartHttpServletRequest(@Nullable ServletContext servletContext)
Create a newMockMultipartHttpServletRequestwith the suppliedServletContext.- 参数:
servletContext- the ServletContext that the request runs in (may benullto use a defaultMockServletContext)
方法详细资料
addFile
public void addFile(MultipartFile file)
Add a file to this request. The parameter name from the multipart form is taken from theMultipartFile.getName().- 参数:
file- multipart file to be added
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
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
getRequestMethod
public HttpMethod getRequestMethod()
从接口复制的说明:MultipartHttpServletRequestReturn this request's method as a convenient HttpMethod instance.
getRequestHeaders
public HttpHeaders getRequestHeaders()
从接口复制的说明:MultipartHttpServletRequestReturn this request's headers as a convenient HttpHeaders instance.
getMultipartHeaders
public HttpHeaders getMultipartHeaders(String paramOrFileName)
从接口复制的说明:MultipartHttpServletRequestReturn the headers associated with the specified part of the multipart request.If the underlying implementation supports access to headers, then all headers are returned. Otherwise, the returned headers will include a 'Content-Type' header at the very least.