该注解将@Configuration、@ComponentScan、@EnableAutoConfiguration三个注解组合在了一起。
@Configuration
@ComponentScan
@EnableAutoConfiguration
@ComponentScan:启动组件扫描,这样写的Web控制器类(@Controller)和其他组件才能被自动发现并注册为Spring应用程序上下文里的Bean。
@Controller
@EnableAutoConfiguration:开启SpringBoot自动配置。