java.lang.IllegalArgumentException: Mapped Statements collection already contains value for com.plug.wfzp.dao.other.Other.addProduce. please check com/plug/wfzp/dao/other/Other.java (best guess) and com/plug/wfzp/dao/other/Other.java (best guess)
时间: 2023-12-30 08:05:07 浏览: 122
ProtoBuffer3文件转成C#文件Unity3D工具
这个异常通常发生在Mybatis中,原因是您定义了重复的Mapper映射,即在同一个Mapper XML文件中重复定义了相同ID的映射。
解决方法有两种:
1. 检查您的Mapper XML文件,确保没有重复的ID定义;
2. 检查您的Mapper接口类,看看是否有重复的方法定义。如果有,可以尝试将其合并为一个方法,或者在Mapper XML文件中使用 `<select>`、`<insert>`、`<update>`、`<delete>`等标签来定义映射,而不是使用`<sql>`标签。
阅读全文