Class MockMvcConfigurerAdapter
- java.lang.Object
- org.springframework.test.web.servlet.setup.MockMvcConfigurerAdapter
- All Implemented Interfaces:
MockMvcConfigurer
public abstract class MockMvcConfigurerAdapter extends Object implements MockMvcConfigurer
An empty method implementation ofMockMvcConfigurer.- Since:
- 4.1
- Author:
- Rossen Stoyanchev
Constructor Summary
Constructors Constructor Description MockMvcConfigurerAdapter()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterConfigurerAdded(ConfigurableMockMvcBuilder<?> builder)Invoked immediately when thisMockMvcConfigureris added viaConfigurableMockMvcBuilder.apply(org.springframework.test.web.servlet.setup.MockMvcConfigurer).RequestPostProcessorbeforeMockMvcCreated(ConfigurableMockMvcBuilder<?> builder, WebApplicationContext cxt)Invoked when the MockMvc instance is about to be created with the MockMvc builder and the Spring WebApplicationContext that will be passed to theDispatcherServlet.
Constructor Detail
MockMvcConfigurerAdapter
public MockMvcConfigurerAdapter()
Method Detail
afterConfigurerAdded
public void afterConfigurerAdded(ConfigurableMockMvcBuilder<?> builder)
Description copied from interface:MockMvcConfigurerInvoked immediately when thisMockMvcConfigureris added viaConfigurableMockMvcBuilder.apply(org.springframework.test.web.servlet.setup.MockMvcConfigurer).- Specified by:
afterConfigurerAddedin interfaceMockMvcConfigurer- Parameters:
builder- the builder for the MockMvc
beforeMockMvcCreated
@Nullable public RequestPostProcessor beforeMockMvcCreated(ConfigurableMockMvcBuilder<?> builder, WebApplicationContext cxt)
Description copied from interface:MockMvcConfigurerInvoked when the MockMvc instance is about to be created with the MockMvc builder and the Spring WebApplicationContext that will be passed to theDispatcherServlet.- Specified by:
beforeMockMvcCreatedin interfaceMockMvcConfigurer- Parameters:
builder- the builder for the MockMvccxt- the Spring configuration- Returns:
- a post processor to be applied to every request performed through the
MockMvcinstance.