public class SpringApplicationContextLoader
extends AbstractContextLoader
ContextLoader that can be used to test Spring Boot applications (those that
normally startup using SpringApplication). Can be used to test non-web features
(like a repository layer) or start an fully-configured embedded servlet container.
Use @WebIntegrationTest (or @IntegrationTest with
@WebAppConfiguration) to indicate that you want to use a real servlet container
or @WebAppConfiguration alone to use a MockServletContext.
If @ActiveProfiles are provided in the test class they will be used to
create the application context.
IntegrationTest,
WebIntegrationTest,
TestRestTemplate| Constructor and Description |
|---|
SpringApplicationContextLoader() |
| Modifier and Type | Method and Description |
|---|---|
protected Class<?>[] |
detectDefaultConfigurationClasses(Class<?> declaringClass)
Detect the default configuration classes for the supplied test class.
|
protected Map<String,Object> |
getEnvironmentProperties(MergedContextConfiguration config) |
protected String |
getResourceSuffix() |
protected SpringApplication |
getSpringApplication()
Builds new
SpringApplication instance. |
ApplicationContext |
loadContext(MergedContextConfiguration config) |
ApplicationContext |
loadContext(String... locations) |
void |
processContextConfiguration(ContextConfigurationAttributes configAttributes) |
public ApplicationContext loadContext(MergedContextConfiguration config) throws Exception
Exceptionprotected SpringApplication getSpringApplication()
SpringApplication instance. You can
override this method to add custom behaviourSpringApplication instanceprotected Map<String,Object> getEnvironmentProperties(MergedContextConfiguration config)
public void processContextConfiguration(ContextConfigurationAttributes configAttributes)
protected Class<?>[] detectDefaultConfigurationClasses(Class<?> declaringClass)
AnnotationConfigContextLoaderUtils#detectDefaultConfigurationClasses .declaringClass - the test class that declared @ContextConfigurationnullAnnotationConfigContextLoaderUtilspublic ApplicationContext loadContext(String... locations) throws Exception
Exceptionprotected String getResourceSuffix()
Copyright © 2015 Pivotal Software, Inc.. All rights reserved.