Spring用@Autowire向一个类注入一个接口的两个实现类
2021-05-15 21:30
标签:实现 name count end extend imp err str extends @Service @Override } @Service @Override } public class AccountController extends BaseController { @Autowired Spring用@Autowire向一个类注入一个接口的两个实现类 标签:实现 name count end extend imp err str extends 原文地址:https://www.cnblogs.com/stitchZsx/p/9750077.html
public class AaaService implements IChangePassword {
public void changePassword(String username, String password) {
}
public class BbbService implements IChangePassword {
public void changePassword(String username, String password) {
}
@Autowired
@Qualifier("aaaService")
private IChangePassword aaaService;
@Qualifier("bbbService")
private IChangePassword bbbService;
}
下一篇:【Linux】数组与关联数组
文章标题:Spring用@Autowire向一个类注入一个接口的两个实现类
文章链接:http://soscw.com/index.php/essay/85965.html