解决com.ibatis.sqlmap.client.SqlMapException: There is no statement named in this

自己碰到的情况



classpath:mapper/ronghui-mapper-actor.xml
classpath:mapper/ronghui-mapper-system.xml
classpath:mapper/ronghui-mapper-pm.xml
classpath:mapper/ronghui-mapper-pc.xml
classpath:mapper/ronghui-mapper-ps.xml





要把配置mapper的配置文件信息加入sqlMapClient里面去.


[url]http://bubuko.com/infodetail-232035.html[/url]

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

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

你可能感兴趣的:(问题收集)