spring espect XX but YY
注入和查找问题
HSF Consumer bean, 注入的是beanName='实际接口名', type='HSFSpringConsumerBean', 造成Autowire时查询出来的类型不匹配
MybatisMapper的autowire为什么没有类型不匹配的问题, 注入时是Mapper的代理类, 查询出来却直接是Mapper实现类?
@autowired
private UserMapper userMapper;
来注入对象的时候,其实是经历了 cglib --> mapperfactorybean --> sqlsessiontemplate --> mapperproxy --> 原生dao接口 的包装过程,才获取的
使用Autowired required=false先屏蔽类型错误
为什么在使用PandalarBoot的项目中没有出现类型错误?
@@@build beautiful things, share happiness@@@