1.SpringBoot
2.SpringBoot 核心注解
@SpringbootApplication相当于@Configuration,@ComponentScan,@EnableAutoConfiguration
1) @Configuration JavaConfig形式的Spring IOC容器的配置文件:springmvc-servlet.xml(sts spring-ssm) 任何一个标注了@Bean的方法,其返回值作为一个bean定义注册到Spring的IoC容器,方法名将默认成该bean定义的id
2) @ComponentScan: 自动扫描并加载符合条件的组件(比如@Component和@Repository等)或者bean定义,最终通过注解@EnableAutoConfiguration将这些bean定义加载到IoC容器中
3) @EnableAutoConfiguration: 借助@Import的帮助,将所有符合自动配置条件的bean定义加载到IoC容器
来源:https://www.cnblogs.com/dxjx/p/12460278.html