鉴于我将Spring bean配置为
@Service("myService")
public class DefaultService extends MyService {
}
和一个使用这个bean的类
public class Consumer {
@Autowired
@Qualifier("myService")
private MyService service;
...
}
我现在想要我的项目,包括前面的类,让Consumer注入另一个MyService实现.因此我想覆盖bean myService
@Service("myService")
public class SpecializedService implements MyService {
}
导致Consumer现在携带SpecializedService的实例而不是DefaultService.根据定义,我不能在Spring容器中有两个具有相同名称的bean.我怎么能告诉spring,新服务的定义是否会覆盖旧服务?我不想修改Consumer类.
最佳答案
要么显式定义服务bean
原文链接:https://www.f2er.com/spring/432157.html
或组件扫描它.
在任何一种情况下,在您的应用程序上下文中,避免显式定义DefaultService并避免对其进行组件扫描.