一、定时任务 @Scheduled @EnableScheduling
二、扫描组件 @ComponentScan
三、组件 @component
1、@controller 控制器(注入服务)
2、@service 服务(注入dao)
3、@repository dao(实现dao访问)
4、@component (把普通pojo实例化到spring容器中,相当于配置文件中的<bean id="" class=""/>)
四、缓存 @EnableCaching @Cacheable
Spring Cache 使用 ---@EnableCaching @Cacheable 注解
五、区分实现类 @Qualifier
六、配置 @Configuration