Spring的bean的几种声明方式
组件声明
@Component
@Controller
@Service
@Repository
配置类
@Configuration + @Bean
@ConponentScan用来搜索配置了@Conponent的类,通常和@Configuration配合使用
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 白兰!
@Component
@Controller
@Service
@Repository
@Configuration + @Bean
@ConponentScan用来搜索配置了@Conponent的类,通常和@Configuration配合使用