See: Description
Class | Description |
---|---|
AbstractGenericWebContextLoader |
Abstract, generic extension of
AbstractContextLoader that loads a
GenericWebApplicationContext . |
AnnotationConfigWebContextLoader |
Concrete implementation of
AbstractGenericWebContextLoader that loads
bean definitions from annotated classes. |
GenericGroovyXmlWebContextLoader |
Concrete implementation of
AbstractGenericWebContextLoader that loads
bean definitions from Groovy scripts and XML configuration files. |
GenericXmlWebContextLoader |
Concrete implementation of
AbstractGenericWebContextLoader that loads
bean definitions from XML resources. |
ServletTestExecutionListener |
TestExecutionListener which provides mock Servlet API support to
WebApplicationContexts loaded by the Spring
TestContext Framework. |
WebDelegatingSmartContextLoader |
WebDelegatingSmartContextLoader is a concrete implementation of
AbstractDelegatingSmartContextLoader that delegates to a
GenericXmlWebContextLoader (or a GenericGroovyXmlWebContextLoader if
Groovy is present on the classpath) and an AnnotationConfigWebContextLoader . |
WebMergedContextConfiguration |
WebMergedContextConfiguration encapsulates the merged
context configuration declared on a test class and all of its superclasses
via @ContextConfiguration ,
@WebAppConfiguration , and
@ActiveProfiles . |
WebTestContextBootstrapper |
Web-specific implementation of the
TestContextBootstrapper SPI. |
Annotation Type | Description |
---|---|
WebAppConfiguration |
@WebAppConfiguration is a class-level annotation that is used to
declare that the ApplicationContext loaded for an integration test
should be a WebApplicationContext . |