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 String[] |
getResourceSuffixes() |
protected SpringApplication |
getSpringApplication()
Builds new
SpringApplication instance. |
ApplicationContext |
loadContext(MergedContextConfiguration config) |
ApplicationContext |
loadContext(String... locations) |
void |
processContextConfiguration(ContextConfigurationAttributes configAttributes) |
generateDefaultLocations, isGenerateDefaultLocations, modifyLocations, prepareContext, processLocations
public ApplicationContext loadContext(MergedContextConfiguration config) throws Exception
Exception
protected SpringApplication getSpringApplication()
SpringApplication
instance. You can
override this method to add custom behaviorSpringApplication
instanceprotected Map<String,Object> getEnvironmentProperties(MergedContextConfiguration config)
public void processContextConfiguration(ContextConfigurationAttributes configAttributes)
processContextConfiguration
in interface SmartContextLoader
processContextConfiguration
in class AbstractContextLoader
protected Class<?>[] detectDefaultConfigurationClasses(Class<?> declaringClass)
AnnotationConfigContextLoaderUtils.detectDefaultConfigurationClasses(java.lang.Class<?>)
.declaringClass
- the test class that declared @ContextConfiguration
null
AnnotationConfigContextLoaderUtils
public ApplicationContext loadContext(String... locations) throws Exception
Exception
protected String[] getResourceSuffixes()
getResourceSuffixes
in class AbstractContextLoader
protected String getResourceSuffix()
getResourceSuffix
in class AbstractContextLoader
Copyright © 2019 Pivotal Software, Inc.. All rights reserved.