类 MockMvcHttpConnector.PrintingMvcResult
java.lang.Object
cn.taketoday.test.web.servlet.client.MockMvcHttpConnector.PrintingMvcResult
- 所有已实现的接口:
MvcResult
- 封闭类:
- MockMvcHttpConnector
-
字段概要
字段从接口继承的字段 cn.taketoday.test.web.servlet.MvcResult
MODEL_AND_VIEW_ATTRIBUTE, VIEW_ATTRIBUTE, VIEW_NAME_ATTRIBUTE -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明Get the result of async execution.getAsyncResult(long timeToWait) Get the result of async execution and wait if necessary.cn.taketoday.web.view.RedirectModelReturn the "output" flash attributes saved during request processing.Return the executed handler.cn.taketoday.web.HandlerInterceptor[]Return interceptors around the handler.cn.taketoday.web.view.ModelAndViewReturn theModelAndViewprepared by the handler.Return the performed request.cn.taketoday.web.RequestContextReturn any exception raised by a handler and successfully resolved through aHandlerExceptionHandler.Return the resulting response.toString()
-
字段详细资料
-
mvcResult
-
-
构造器详细资料
-
PrintingMvcResult
-
-
方法详细资料
-
getRequest
从接口复制的说明:MvcResultReturn the performed request.- 指定者:
getRequest在接口中MvcResult- 返回:
- the request, never
null
-
getResponse
从接口复制的说明:MvcResultReturn the resulting response.- 指定者:
getResponse在接口中MvcResult- 返回:
- the response, never
null
-
getRequestContext
public cn.taketoday.web.RequestContext getRequestContext()- 指定者:
getRequestContext在接口中MvcResult
-
getHandler
从接口复制的说明:MvcResultReturn the executed handler.- 指定者:
getHandler在接口中MvcResult- 返回:
- the handler, possibly
nullif none were executed
-
getInterceptors
@Nullable public cn.taketoday.web.HandlerInterceptor[] getInterceptors()从接口复制的说明:MvcResultReturn interceptors around the handler.- 指定者:
getInterceptors在接口中MvcResult- 返回:
- interceptors, or
nullif none were selected
-
getModelAndView
@Nullable public cn.taketoday.web.view.ModelAndView getModelAndView()从接口复制的说明:MvcResultReturn theModelAndViewprepared by the handler.- 指定者:
getModelAndView在接口中MvcResult- 返回:
- a
ModelAndView, ornullif none
-
getResolvedException
从接口复制的说明:MvcResultReturn any exception raised by a handler and successfully resolved through aHandlerExceptionHandler.- 指定者:
getResolvedException在接口中MvcResult- 返回:
- an exception, or
nullif none
-
getFlashMap
public cn.taketoday.web.view.RedirectModel getFlashMap()从接口复制的说明:MvcResultReturn the "output" flash attributes saved during request processing.- 指定者:
getFlashMap在接口中MvcResult- 返回:
- the
RedirectModel, possibly empty
-
getAsyncResult
从接口复制的说明:MvcResultGet the result of async execution.This method will wait for the async result to be set within the timeout value associated with the async request, see
MockAsyncContext#setTimeout. Alternatively, useMvcResult.getAsyncResult(long)to specify the amount of time to wait.- 指定者:
getAsyncResult在接口中MvcResult
-
getAsyncResult
从接口复制的说明:MvcResultGet the result of async execution and wait if necessary.- 指定者:
getAsyncResult在接口中MvcResult- 参数:
timeToWait- how long to wait for the async result to be set, in milliseconds; if -1, then fall back on the timeout value associated with the async request, seeMockAsyncContext#setTimeoutfor more details.
-
toString
-