|
58 | 58 | * {@link org.springframework.context.annotation.Bean @Bean}-methods</li>
|
59 | 59 | * </ul>
|
60 | 60 | *
|
61 |
| - * Consult the Javadoc for |
| 61 | + * <p>Consult the Javadoc for |
62 | 62 | * {@link org.springframework.context.annotation.Configuration @Configuration} and
|
63 | 63 | * {@link org.springframework.context.annotation.Bean @Bean}
|
64 | 64 | * for further information regarding the configuration and semantics of
|
|
270 | 270 | * explicit loader. If no class in the hierarchy specifies an explicit
|
271 | 271 | * loader, a default loader will be used instead.
|
272 | 272 | *
|
273 |
| - * <p>The default concrete implementation chosen at runtime will be |
| 273 | + * <p>The default concrete implementation chosen at runtime will be either |
274 | 274 | * {@link org.springframework.test.context.support.DelegatingSmartContextLoader
|
275 |
| - * DelegatingSmartContextLoader}. For further details on the default behavior |
276 |
| - * of various concrete {@code ContextLoaders}, check out the Javadoc for |
| 275 | + * DelegatingSmartContextLoader} or |
| 276 | + * {@link org.springframework.test.context.web.WebDelegatingSmartContextLoader |
| 277 | + * WebDelegatingSmartContextLoader} depending on the absence or presence of |
| 278 | + * {@link org.springframework.test.context.web.WebAppConfiguration |
| 279 | + * @WebAppConfiguration}. For further details on the default behavior |
| 280 | + * of various concrete {@code SmartContextLoaders}, check out the Javadoc for |
277 | 281 | * {@link org.springframework.test.context.support.AbstractContextLoader
|
278 | 282 | * AbstractContextLoader},
|
279 | 283 | * {@link org.springframework.test.context.support.GenericXmlContextLoader
|
280 |
| - * GenericXmlContextLoader}, and |
| 284 | + * GenericXmlContextLoader}, |
281 | 285 | * {@link org.springframework.test.context.support.AnnotationConfigContextLoader
|
282 |
| - * AnnotationConfigContextLoader}. |
| 286 | + * AnnotationConfigContextLoader}, |
| 287 | + * {@link org.springframework.test.context.web.GenericXmlWebContextLoader |
| 288 | + * GenericXmlWebContextLoader}, and |
| 289 | + * {@link org.springframework.test.context.web.AnnotationConfigWebContextLoader |
| 290 | + * AnnotationConfigWebContextLoader}. |
| 291 | + * |
283 | 292 | * @since 2.5
|
284 | 293 | */
|
285 | 294 | Class<? extends ContextLoader> loader() default ContextLoader.class;
|
|
0 commit comments