我有一个映射器。使用该映射器的插入功能,我能够成功插入记录。但是在使用deleteByPrimaryKey
时会抛出错误
Mapped Statements collection does not contain value for
我的mapper文件位于正确的位置,名称空间也是正确的。
当我能够成功插入时,为什么它无法删除?
答案 0 :(得分:1)
这三个名字必须匹配:
- interface = com.enlliance.inventory.mappers.SettingMapper.class
- mapper file = /com/enlliance/inventory/mappers/SettingMapper.xml
- mapper namespace = com.enlliance.inventory.mappers.SettingMapper
如果他们不匹配,它就不会工作。