Correct list of annotations equivalent to @SpringBootApplication

See gh-35180
This commit is contained in:
Juhan Aasaru
2023-04-27 10:55:33 +03:00
committed by Andy Wilkinson
parent 695e58f418
commit 3b70286747

View File

@@ -40,7 +40,7 @@ import org.springframework.data.repository.Repository;
* Indicates a {@link Configuration configuration} class that declares one or more
* {@link Bean @Bean} methods and also triggers {@link EnableAutoConfiguration
* auto-configuration} and {@link ComponentScan component scanning}. This is a convenience
* annotation that is equivalent to declaring {@code @Configuration},
* annotation that is equivalent to declaring {@code @SpringBootConfiguration},
* {@code @EnableAutoConfiguration} and {@code @ComponentScan}.
*
* @author Phillip Webb