Spring Boot 的核心注解是哪个?它主要由哪几个注解组成的?
时间: 2023-06-09 14:07:01 浏览: 40
Spring Boot的核心注解是@SpringBootApplication。它主要由三个注解组成:@SpringBootConfiguration,@EnableAutoConfiguration和@ComponentScan。其中,@SpringBootConfiguration注解用于标记该类是Spring Boot的配置类,@EnableAutoConfiguration注解用于自动配置Spring Boot应用程序,@ComponentScan注解用于扫描包并注册Bean。
阅读全文