错误代码:
Service层接口interface PCI{}
接口实现类@Serviceclass PCIImpt imeplements PCI{}Controller层@Autowiredprivate PCIImpt pciImpt; //注入了实现类
在没有使用maven管理的时候注入实现类编译一直未报错,也就是说编译可以通过,但是使用maven管理后,编译报错。
而正确的写法:
Controller层@Autowiredprivate PCI pci; //注入接口以Autowired自动接收
结果:编译通过;
结论就是:注入的是实现类对象,接收的接口;理解为多态;(Controller–Service–ServiceImpt–Mapper)
要遵循Controller–Service接口–ServiceImpt实现类–Mapper接口模式
那么在Service接口有多个ServiceImpt实现类的情况,就需要指定参数名来选择哪个ServiceImpt实现类了。
Service层(此时有两个接口实现类)@Service("PCIImpt1")class PCIImpt1 imeplements PCI{}@Service("PCIimpt2")class PCIImpt2 imeplements PCI{}Controller层@Resource(name="PCIimpt2") //填PCIimpt1,注入PCIimpt1实现类,填PCIimpt2,则注入PCIimpt2实现类private PCI pci; //注入接口以Resource手动指定接收
同理:在ServiceImpt实现类中也是通过Mapper接口来接收;即:
ServiceImpt实现类@Autowiredprivate Mapper mapper;