diff --git a/org.springframework.context/src/main/java/org/springframework/context/annotation/Configuration.java b/org.springframework.context/src/main/java/org/springframework/context/annotation/Configuration.java index 2c8e6f40a85229e1eddfea9bffc81028cd843f2a..86ef6ee73cc44f1b5d218a96822cf81ceb5c43b3 100644 --- a/org.springframework.context/src/main/java/org/springframework/context/annotation/Configuration.java +++ b/org.springframework.context/src/main/java/org/springframework/context/annotation/Configuration.java @@ -46,7 +46,8 @@ import org.springframework.stereotype.Component; *
  • Configuration classes must be non-final *
  • Configuration classes must be non-local (may not be declared within a method) *
  • Configuration classes must have a default/no-arg constructor and may not use - * {@link Autowired} constructor parameters + * {@link Autowired} constructor parameters. Nested configuration classes must be + * {@code static} * * * @author Rod Johnson