@SpringBootApplication spring启动类上的注解(实际是由三个注解组成:@SpringBootConfiguration @EnableAutoConfiguration @ComponentScan)
@EnableAutoConfiguration 自动配置类
@SpringBootConfiguration spring配置类
@CompentScan 扫描注解
@Bean bean注解
@ConfigurationProperties 配置文件
@EnableConfigurationProperties 配置文件
@Controller 控制器注解
@Service 服务注解
@Repository 持久化注解
@ImportResource 将资源导入容器