"@service"就是要告诉spring我不要给这个了配置bean,spring自动帮你实例化它
关于多个对象实现同一个接口:
不同的实现@service可在后面加上名字:
@Service("A")
这样在autowired该接口时候这样摄者就不会混淆每个实现了:
@Autowired
@Qualifier("A")
标签:style 告诉 autowire span 实例 注解 bsp class color
"@service"就是要告诉spring我不要给这个了配置bean,spring自动帮你实例化它
关于多个对象实现同一个接口:
不同的实现@service可在后面加上名字:
@Service("A")
这样在autowired该接口时候这样摄者就不会混淆每个实现了:
@Autowired
@Qualifier("A")
标签:style 告诉 autowire span 实例 注解 bsp class color
原文地址:https://www.cnblogs.com/yxmfighting/p/8185233.html