|
Spring Framework | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.springframework.test.context.support.AbstractContextLoader
org.springframework.test.context.support.AbstractGenericContextLoader
org.springframework.test.context.support.AnnotationConfigContextLoader
public class AnnotationConfigContextLoader
Concrete implementation of AbstractGenericContextLoader that loads
bean definitions from annotated classes.
See the Javadoc for
@ContextConfiguration
for a definition of annotated class.
Note: AnnotationConfigContextLoader supports annotated classes
rather than the String-based resource locations defined by the legacy
ContextLoader API. Thus,
although AnnotationConfigContextLoader extends
AbstractGenericContextLoader, AnnotationConfigContextLoader
does not support any String-based methods defined by
AbstractContextLoader or AbstractGenericContextLoader.
Consequently, AnnotationConfigContextLoader should chiefly be
considered a SmartContextLoader
rather than a ContextLoader.
processContextConfiguration(ContextConfigurationAttributes),
detectDefaultConfigurationClasses(Class),
loadBeanDefinitions(GenericApplicationContext, MergedContextConfiguration)| Constructor Summary | |
|---|---|
AnnotationConfigContextLoader()
|
|
| Method Summary | |
|---|---|
protected BeanDefinitionReader |
createBeanDefinitionReader(GenericApplicationContext context)
AnnotationConfigContextLoader should be used as a
SmartContextLoader,
not as a legacy ContextLoader. |
protected java.lang.Class<?>[] |
detectDefaultConfigurationClasses(java.lang.Class<?> declaringClass)
Detect the default configuration classes for the supplied test class. |
protected java.lang.String[] |
generateDefaultLocations(java.lang.Class<?> clazz)
AnnotationConfigContextLoader should be used as a
SmartContextLoader,
not as a legacy ContextLoader. |
protected java.lang.String |
getResourceSuffix()
AnnotationConfigContextLoader should be used as a
SmartContextLoader,
not as a legacy ContextLoader. |
protected void |
loadBeanDefinitions(GenericApplicationContext context,
MergedContextConfiguration mergedConfig)
Register classes in the supplied context
from the classes in the supplied MergedContextConfiguration. |
protected java.lang.String[] |
modifyLocations(java.lang.Class<?> clazz,
java.lang.String... locations)
AnnotationConfigContextLoader should be used as a
SmartContextLoader,
not as a legacy ContextLoader. |
void |
processContextConfiguration(ContextConfigurationAttributes configAttributes)
Process annotated classes in the supplied ContextConfigurationAttributes. |
| Methods inherited from class org.springframework.test.context.support.AbstractGenericContextLoader |
|---|
customizeBeanFactory, customizeContext, loadContext, loadContext, prepareContext |
| Methods inherited from class org.springframework.test.context.support.AbstractContextLoader |
|---|
isGenerateDefaultLocations, processLocations |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public AnnotationConfigContextLoader()
| Method Detail |
|---|
public void processContextConfiguration(ContextConfigurationAttributes configAttributes)
ContextConfigurationAttributes.
If the annotated classes are null or empty and
AbstractContextLoader.isGenerateDefaultLocations() returns true, this
SmartContextLoader will attempt to detect default configuration classes.
If defaults are detected they will be
set in the
supplied configuration attributes. Otherwise, properties in the supplied
configuration attributes will not be modified.
processContextConfiguration in interface SmartContextLoaderprocessContextConfiguration in class AbstractContextLoaderconfigAttributes - the context configuration attributes to processSmartContextLoader.processContextConfiguration(ContextConfigurationAttributes),
AbstractContextLoader.isGenerateDefaultLocations(),
detectDefaultConfigurationClasses(Class)protected java.lang.Class<?>[] detectDefaultConfigurationClasses(java.lang.Class<?> declaringClass)
The returned class array will contain all static inner classes of
the supplied class that meet the requirements for @Configuration
class implementations as specified in the documentation for
@Configuration.
The implementation of this method adheres to the contract defined in the
SmartContextLoader
SPI. Specifically, this method uses introspection to detect default
configuration classes that comply with the constraints required of
@Configuration class implementations. If a potential candidate
configuration class does not meet these requirements, this method will log a
warning, and the potential candidate class will be ignored.
declaringClass - the test class that declared @ContextConfiguration
null
protected java.lang.String[] modifyLocations(java.lang.Class<?> clazz,
java.lang.String... locations)
AnnotationConfigContextLoader should be used as a
SmartContextLoader,
not as a legacy ContextLoader.
Consequently, this method is not supported.
modifyLocations in class AbstractContextLoaderclazz - the class with which the locations are associatedlocations - the resource locations to be modified
java.lang.UnsupportedOperationExceptionAbstractContextLoader.modifyLocations(java.lang.Class>, java.lang.String...)protected java.lang.String[] generateDefaultLocations(java.lang.Class<?> clazz)
AnnotationConfigContextLoader should be used as a
SmartContextLoader,
not as a legacy ContextLoader.
Consequently, this method is not supported.
generateDefaultLocations in class AbstractContextLoaderclazz - the class for which the default locations are to be generated
java.lang.UnsupportedOperationExceptionAbstractContextLoader.generateDefaultLocations(java.lang.Class>)protected java.lang.String getResourceSuffix()
AnnotationConfigContextLoader should be used as a
SmartContextLoader,
not as a legacy ContextLoader.
Consequently, this method is not supported.
getResourceSuffix in class AbstractContextLoadernull or empty
java.lang.UnsupportedOperationExceptionAbstractContextLoader.getResourceSuffix()
protected void loadBeanDefinitions(GenericApplicationContext context,
MergedContextConfiguration mergedConfig)
context
from the classes in the supplied MergedContextConfiguration.
Each class must represent an annotated class. An
AnnotatedBeanDefinitionReader is used to register the appropriate
bean definitions.
Note that this method does not call #createBeanDefinitionReader()
since AnnotatedBeanDefinitionReader is not an instance of
BeanDefinitionReader.
loadBeanDefinitions in class AbstractGenericContextLoadercontext - the context in which the annotated classes should be registeredmergedConfig - the merged configuration from which the classes should be retrievedAbstractGenericContextLoader.loadBeanDefinitions(org.springframework.context.support.GenericApplicationContext, org.springframework.test.context.MergedContextConfiguration)protected BeanDefinitionReader createBeanDefinitionReader(GenericApplicationContext context)
AnnotationConfigContextLoader should be used as a
SmartContextLoader,
not as a legacy ContextLoader.
Consequently, this method is not supported.
createBeanDefinitionReader in class AbstractGenericContextLoadercontext - the context for which the BeanDefinitionReader
should be created
BeanDefinitionReader for the supplied context
java.lang.UnsupportedOperationExceptionloadBeanDefinitions(org.springframework.context.support.GenericApplicationContext, org.springframework.test.context.MergedContextConfiguration),
AbstractGenericContextLoader.createBeanDefinitionReader(org.springframework.context.support.GenericApplicationContext)
|
Spring Framework | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||