|
spring-test | ||||||||
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 org.springframework.beans.factory.support.BeanDefinitionReader |
createBeanDefinitionReader(org.springframework.context.support.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(org.springframework.context.support.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 SmartContextLoader
processContextConfiguration
in class AbstractContextLoader
configAttributes
- 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 AbstractContextLoader
clazz
- the class with which the locations are associatedlocations
- the resource locations to be modified
java.lang.UnsupportedOperationException
AbstractContextLoader.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 AbstractContextLoader
clazz
- the class for which the default locations are to be generated
java.lang.UnsupportedOperationException
AbstractContextLoader.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 AbstractContextLoader
null
or empty
java.lang.UnsupportedOperationException
AbstractContextLoader.getResourceSuffix()
protected void loadBeanDefinitions(org.springframework.context.support.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 AbstractGenericContextLoader
context
- 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 org.springframework.beans.factory.support.BeanDefinitionReader createBeanDefinitionReader(org.springframework.context.support.GenericApplicationContext context)
AnnotationConfigContextLoader
should be used as a
SmartContextLoader
,
not as a legacy ContextLoader
.
Consequently, this method is not supported.
createBeanDefinitionReader
in class AbstractGenericContextLoader
context
- the context for which the BeanDefinitionReader
should be created
BeanDefinitionReader
for the supplied context
java.lang.UnsupportedOperationException
loadBeanDefinitions(org.springframework.context.support.GenericApplicationContext, org.springframework.test.context.MergedContextConfiguration)
,
AbstractGenericContextLoader.createBeanDefinitionReader(org.springframework.context.support.GenericApplicationContext)
|
spring-test | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |