gpt4 book ai didi

java - 在一个类字段中处理一个 Spring bean/接口(interface)的多个实现

转载 作者:搜寻专家 更新时间:2023-11-01 02:05:29 25 4
gpt4 key购买 nike

类似于此question ,但我有这种情况。假设我有一个 AccountService 接口(interface)和两个实现:DefaultAccountServiceImplSpecializedAccountServiceImpl,(类就像前面的 question 一样)。实现在一个类中,但是对于不同的方法有不同的 bean 实现。说:

@RestController
@RequestMapping("/account")
public class AccountManagerRestController {

@Autowired
private AccountService service;

@RequestMapping(value = "/register", method = RequestMethod.POST)
HttpEntity<?> registerAccount(@RequestBody AccountRegisterRequestBody input) {
// here the `service` is DefaultAccountServiceImpl
...
}


@RequestMapping(value = "/register/specialized", method = RequestMethod.POST)
HttpEntity<?> registerSpecializedAccount(@RequestBody AccountRegisterRequestBody input) {
// here the `service` is SpecializedAccountServiceImpl
...
}
}

最佳答案

使用@Qualifier("beanName")

@Autowired @Qualifier("service1")
private AccountService service1;

@Autowired @Qualifier("service2")
private AccountService service2;

关于java - 在一个类字段中处理一个 Spring bean/接口(interface)的多个实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35509558/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com