今天使用基于MapperFactoryBean来实现MyBatis与Spring的整合,使用Mapper接口编程,一直报一个错误,调试了很久
org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘customerMapper’ defined in class path resource [applicationContext.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type ‘java.lang.String’ to required type ‘java.lang.Class’ for property ‘mapperInterface’; nested exception is java.lang.IllegalArgumentException: Cannot find class [mapper.CustomerMapper]
您好,您的问题原因是Mapper接口的名称和对应的Mapper.xml映射文件的名称不一致。在使用Mapper接口编程的方式,需要遵循一些规范 例如:
Mapper接口的名称和对应的Mapper.xml映射文件的名称必须一致
Mapper.xml文件中的namespace与Mapper接口的类路径相同
Mapper接口中的方法名和Mapper.xml中定义的每个执行语句的id相同
Mapper接口中方法的输入参数类型要和Mapper.xml中定义的每个sql的 parameterType的类型相同
Mapper接口方法的输出参数类型要和Mapper.xml中定义的每个sql的resultType的类型相同
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。