Browse Source

Javadoc update: ConfigurationClassPostProcessor is priority-ordered

Issue: SPR-17062
pull/1890/head
Juergen Hoeller 8 years ago
parent
commit
0b60447c49
  1. 8
      spring-context/src/main/java/org/springframework/context/annotation/ConfigurationClassPostProcessor.java

8
spring-context/src/main/java/org/springframework/context/annotation/ConfigurationClassPostProcessor.java

@ -73,10 +73,10 @@ import static org.springframework.context.annotation.AnnotationConfigUtils.CONFI
* {@code <context:component-scan/>}. Otherwise, may be declared manually as * {@code <context:component-scan/>}. Otherwise, may be declared manually as
* with any other BeanFactoryPostProcessor. * with any other BeanFactoryPostProcessor.
* *
* <p>This post processor is {@link Ordered#HIGHEST_PRECEDENCE} as it is important * <p>This post processor is priority-ordered as it is important that any
* that any {@link Bean} methods declared in Configuration classes have their * {@link Bean} methods declared in {@code @Configuration} classes have
* respective bean definitions registered before any other BeanFactoryPostProcessor * their corresponding bean definitions registered before any other
* executes. * {@link BeanFactoryPostProcessor} executes.
* *
* @author Chris Beams * @author Chris Beams
* @author Juergen Hoeller * @author Juergen Hoeller

Loading…
Cancel
Save