- 博客(2)
- 收藏
- 关注
转载 Spring中@Component与@Bean的区别
@Component和@Bean的目的是一样的,都是注册bean到Spring容器中。@Component VS @Bean @Component 和 它的子类型(@Controller, @Service and @Repository)注释在类上。告诉Spring,我是一个bean,通过类路径扫描自动检测并注入到Spring容器中。 @Bean不能注释在类上...
2019-09-18 15:28:00 173
转载 Spring中 如果该Service有多个实现类,它怎么知道该注入哪个ServiceImpl类?
方法一:Controller中注入service的时候使用@Autowired自动注入,@Qualifier("beanId") 来指定注入哪一个。方法二:Controller中注入service的时候使用@Resource(type = 类名.class)来指定注入哪一个。方法三: 1.每个service的impl都可以指定名称(使用@Service(“名称”)) ...
2019-09-16 23:07:00 1280
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人