@Autowired和@Resource注解,⼀个接⼝有多个实现类的时候
Spring注⼊遇到的问题
先说下我遇到的问题,有⼀个接⼝ CompensationService,有两个实现类 MusicCompensationStrategyImpl
和  TakeDeliveryCompensationStrategyImpl
在另⼀个类中需要⽤到其中的两个实现类,我直接CompensationService  com = new  MusicCompensationStrategyImpl () ,然后调⽤此实现类实现的⽅法,但是这个实现类注⼊了⼀个接⼝(此接⼝是⼀个@FeginClients接⼝,调⽤另⼀个服务),所以就出现了空指针异常,此接⼝注⼊不进来。
问题的原因是,我new个对象只是在JVM堆中产⽣了个对象,⽽Fegin是交给了Spring容器来管理,虽然此spring容器也是在JVM中,但是毕竟是两个不同的容器,如同两堵墙不能想通,果断弃之。
如下图和代码:
@Slf4j
@Service(value = "takeDeliveryCompensationStrategyImpl")
public class TakeDeliveryCompensationStrategyImpl implements CompensationService {
@Autowired
private TakeDeliveryServiceOrderService takeDeliveryServiceOrderService;
@Override
public Result<String> compensationMethod(OrderForm orderForm, Long accountId) {
Result<String> takeDeliveryServiceOrder = ateTakeDeliveryServiceOrder(orderForm);
return takeDeliveryServiceOrder;
}
}
如下:
@Slf4j
@Service("musicCompensationStrategyImpl")
@AllArgsConstructor
public class MusicCompensationStrategyImpl implements CompensationService {
CompensationOrderService compensationOrderService;
AccountRemoteService accountRemoteService;
@Override
public Result<String> compensationMethod(OrderForm orderForm, Long accountId) {
⼜⽤@Autowired注解,启动报错,信息显⽰⽆法不知该注⼊那个实现类,因为这个注解是按照类型来的,出现了两个实现类,也不知道按照那个,果断弃之。
最后⽤@Resource注解,这个是按照name来的,在每个实现类上加上,如 @Service("musicCompensationStrategyImpl"),类名全程(⾸字母⼩写, 看我上⾯的代码),然后在要调⽤的类注⼊  @Resource(name = "musicCompensationStrategyImpl")
@Resource(name = "musicCompensationStrategyImpl")
private CompensationService compensationServiceMusic;
@Resource(name = "takeDeliveryCompensationStrategyImpl")
private CompensationService compensationServiceTake;
resource和autowired注解的区别

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。