|
|
|
|
@ -58,7 +58,7 @@ import org.springframework.context.ConfigurableApplicationContext;
@@ -58,7 +58,7 @@ import org.springframework.context.ConfigurableApplicationContext;
|
|
|
|
|
* {@link org.springframework.context.annotation.Bean @Bean}-methods</li> |
|
|
|
|
* </ul> |
|
|
|
|
* |
|
|
|
|
* Consult the Javadoc for |
|
|
|
|
* <p>Consult the Javadoc for |
|
|
|
|
* {@link org.springframework.context.annotation.Configuration @Configuration} and |
|
|
|
|
* {@link org.springframework.context.annotation.Bean @Bean} |
|
|
|
|
* for further information regarding the configuration and semantics of |
|
|
|
|
@ -270,16 +270,25 @@ public @interface ContextConfiguration {
@@ -270,16 +270,25 @@ public @interface ContextConfiguration {
|
|
|
|
|
* explicit loader. If no class in the hierarchy specifies an explicit |
|
|
|
|
* loader, a default loader will be used instead. |
|
|
|
|
* |
|
|
|
|
* <p>The default concrete implementation chosen at runtime will be |
|
|
|
|
* <p>The default concrete implementation chosen at runtime will be either |
|
|
|
|
* {@link org.springframework.test.context.support.DelegatingSmartContextLoader |
|
|
|
|
* DelegatingSmartContextLoader}. For further details on the default behavior |
|
|
|
|
* of various concrete {@code ContextLoaders}, check out the Javadoc for |
|
|
|
|
* DelegatingSmartContextLoader} or |
|
|
|
|
* {@link org.springframework.test.context.web.WebDelegatingSmartContextLoader |
|
|
|
|
* WebDelegatingSmartContextLoader} depending on the absence or presence of |
|
|
|
|
* {@link org.springframework.test.context.web.WebAppConfiguration |
|
|
|
|
* @WebAppConfiguration}. For further details on the default behavior |
|
|
|
|
* of various concrete {@code SmartContextLoaders}, check out the Javadoc for |
|
|
|
|
* {@link org.springframework.test.context.support.AbstractContextLoader |
|
|
|
|
* AbstractContextLoader}, |
|
|
|
|
* {@link org.springframework.test.context.support.GenericXmlContextLoader |
|
|
|
|
* GenericXmlContextLoader}, and |
|
|
|
|
* GenericXmlContextLoader}, |
|
|
|
|
* {@link org.springframework.test.context.support.AnnotationConfigContextLoader |
|
|
|
|
* AnnotationConfigContextLoader}. |
|
|
|
|
* AnnotationConfigContextLoader}, |
|
|
|
|
* {@link org.springframework.test.context.web.GenericXmlWebContextLoader |
|
|
|
|
* GenericXmlWebContextLoader}, and |
|
|
|
|
* {@link org.springframework.test.context.web.AnnotationConfigWebContextLoader |
|
|
|
|
* AnnotationConfigWebContextLoader}. |
|
|
|
|
* |
|
|
|
|
* @since 2.5 |
|
|
|
|
*/ |
|
|
|
|
Class<? extends ContextLoader> loader() default ContextLoader.class; |
|
|
|
|
|