当前位置: 代码迷 >> 综合 >> is ambiguous in Mapped Statements collection
  详细解决方案

is ambiguous in Mapped Statements collection

热度:31   发布时间:2023-11-19 16:49:21.0

Error querying database.  Cause: Java.lang.IllegalArgumentException:XXX is ambiguous in Mapped Statements collection (try using the full name including the namespace, or rename one of the entries)

原因:

1.<mapper namespace="com.seni.dao.ManageAccessMapper" >

mapper的namespace是否拼写正确;名称不能少Mapper,路径必须正确。

2.项目中是否存在两个相同的mapper或者mapper里面的方法名。

例如:<select id="ManageAccess_selectByWhere" resultMap="BaseResultMap">

两个相同的ManageAccess_selectByWhere

全文搜索id名就可查出。

  相关解决方案