Spring Ibatis:Mapped Statements集合不包含值

时间:2015-02-02 18:00:59

标签: spring ibatis

我有一个映射器。使用该映射器的插入功能,我能够成功插入记录。但是在使用deleteByPrimaryKey时会抛出错误

Mapped Statements collection does not contain value for 

我的mapper文件位于正确的位置,名称空间也是正确的。

当我能够成功插入时,为什么它无法删除?

1 个答案:

答案 0 :(得分:1)

见这里:http://mybatis-user.963551.n3.nabble.com/Mapped-Statements-collection-does-not-contain-value-td2553948.html

  

这三个名字必须匹配:
    - interface = com.enlliance.inventory.mappers.SettingMapper.class
    - mapper file = /com/enlliance/inventory/mappers/SettingMapper.xml
    - mapper namespace = com.enlliance.inventory.mappers.SettingMapper
  如果他们不匹配,它就不会工作。