类 MockMvcConfigurerAdapter
java.lang.Object
cn.taketoday.test.web.servlet.setup.MockMvcConfigurerAdapter
- 所有已实现的接口:
MockMvcConfigurer
An empty method implementation of
MockMvcConfigurer.- 从以下版本开始:
- 4.0
- 作者:
- Rossen Stoyanchev
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明voidafterConfigurerAdded(ConfigurableMockMvcBuilder<?> builder) Invoked immediately when thisMockMvcConfigureris added viaConfigurableMockMvcBuilder.apply(cn.taketoday.test.web.servlet.setup.MockMvcConfigurer).beforeMockMvcCreated(ConfigurableMockMvcBuilder<?> builder, cn.taketoday.web.servlet.WebApplicationContext cxt) Invoked when the MockMvc instance is about to be created with the MockMvc builder and the Infra WebApplicationContext that will be passed to theDispatcherServlet.
-
构造器详细资料
-
MockMvcConfigurerAdapter
public MockMvcConfigurerAdapter()
-
-
方法详细资料
-
afterConfigurerAdded
从接口复制的说明:MockMvcConfigurerInvoked immediately when thisMockMvcConfigureris added viaConfigurableMockMvcBuilder.apply(cn.taketoday.test.web.servlet.setup.MockMvcConfigurer).- 指定者:
afterConfigurerAdded在接口中MockMvcConfigurer- 参数:
builder- the builder for the MockMvc
-
beforeMockMvcCreated
@Nullable public RequestPostProcessor beforeMockMvcCreated(ConfigurableMockMvcBuilder<?> builder, cn.taketoday.web.servlet.WebApplicationContext cxt) 从接口复制的说明:MockMvcConfigurerInvoked when the MockMvc instance is about to be created with the MockMvc builder and the Infra WebApplicationContext that will be passed to theDispatcherServlet.- 指定者:
beforeMockMvcCreated在接口中MockMvcConfigurer- 参数:
builder- the builder for the MockMvccxt- the Infra configuration- 返回:
- a post processor to be applied to every request performed
through the
MockMvcinstance.
-