当前位置: 代码迷 >> SQL >> 解决com.ibatis.sql地图.client.SqlMapException: There is no statement named in this
  详细解决方案

解决com.ibatis.sql地图.client.SqlMapException: There is no statement named in this

热度:104   发布时间:2016-05-05 10:38:56.0
解决com.ibatis.sqlmap.client.SqlMapException: There is no statement named in this
http://bubuko.com/infodetail-232035.html

com.ibatis.sqlmap.client.SqlMapException: There is no statement named in this SqlMap.
可能存在3种情况:
1、在xxx.xml文件中有两个标签的id命名相同;
2、DAO实现类方法中没有写对应xxx.xml的id名称;
3、实体映射文件xxx.xml未加入到sqlMap-Config.xml文件中。


http://blog.sina.com.cn/s/blog_566c8d180101cgy5.html
两种情况:
1.你的sqlmap 文件中确实没有xxx这个statement ,很有可能某个字母写错了
2.sqlmap文件定义了namespace属性,此时在本文件中引用别的statement,就需要这样写:(你的namespace).(定义的statement 的id),如果把namespace属性漏了,就被报此异常


  相关解决方案