关于Mybatis中的Invalid bound statement (not found)

mapper.xml中的接口和dao接口一定要对应好

 

在mapper代理的开发中,程序员需要遵守一些规范,mybatis才能实现mapper接口的代理对象。 

它的规范如下:

 

  • mapper.xml的namespace要写所映射接口的全称类名。
  • mapper.xml中的每个statement的id要和接口方法的方法名相同
  • mapper.xml中定义的每个sql的parameterType要和接口方法的形参类型相同
  • mapper.xml中定义的每个sql的resultType要和接口方法的返回值的类型相同
  • mapper.xml要和对应的mapper接口在同一个包下
  • mapper.xml的命名规范遵守: 接口名+Mapper.xml

下次不要在犯这种错误了!

 

你可能感兴趣的:(关于Mybatis中的Invalid bound statement (not found))