RESOLVED - issue SPR-5596: Test @Autowired @Configuration class constructors

This commit is contained in:
Chris Beams
2009-03-27 05:36:29 +00:00
parent 1697932c57
commit aee7f1ce53
3 changed files with 52 additions and 14 deletions

View File

@@ -45,8 +45,8 @@ import org.springframework.stereotype.Component;
* <ul>
* <li>Configuration classes must be non-final
* <li>Configuration classes must be non-local (may not be declared within a method)
* <li>Configuration classes must have a default/no-arg constructor or at least one
* {@link Autowired} constructor
* <li>Configuration classes must have a default/no-arg constructor and may not use
* {@link Autowired} constructor parameters
* </ul>
*
* @author Rod Johnson