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

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@843 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Chris Beams
2009-03-27 05:36:29 +00:00
parent d96ebc4385
commit 3e7fe100e2
3 changed files with 52 additions and 14 deletions
@@ -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