啟動(dòng)類上面的注解是@SpringBootApplication,他也是SpringBoot的核心注解,主要組合包含了以下3個(gè)注解:
@SpringBootConfiguration:組合了@Configuration注解,實(shí)現(xiàn)配置文件的功能;
@EnableAutoConfiguration:打開自動(dòng)配置的功能,也可以關(guān)閉某個(gè)自動(dòng)配置的選項(xiàng),如關(guān)閉數(shù)據(jù)源自動(dòng)配置的功能:
@SpringBootApplication(exclude={DataSourceAutoConfiguration.class});
@ComponentScan:Spring組件掃描。