标签:cat 一个 toc 替代 app ati 注解 配置 conf
这是一个SpringBoot项目的核心注解,主要目的是开启自动配置。
同时这也是个组合注解,由 @Configuration、@EnableAutoConfiguration、@ComponentScan组合而成!
@Configuration:在Spring Boot项目中推荐使用@SpringBootConfiguration替代@Configuration
@EnableAutoConfiguration:启动自动配置,该注解会使SpringBoot根据项目中依赖的jar包自动配置项目的配置项
@ComponentScan:默认扫描@SpringBootApplication所在类的同级目录和子目录的包。
标签:cat 一个 toc 替代 app ati 注解 配置 conf
原文地址:https://www.cnblogs.com/lqsb/p/9300379.html