Error parsing Mapper XML
这个报错本质来说是mapper.xml出现错误
相同的还有 failed resolve xxx.xml等
这里分析一些编写时不会明显爆红,启动报错的问题
1、id冲突
这里出现的冲突有
resultMap
<resultMap type="com.newtouch.business.module.dto.T01agentComDTO" id="t01agentComMap">
<resultMap type="com.cpi.newtouch.business.module.dto.T01comDTO" id="t01agentComMap">
具体的sql
<select id="findBy" >
<update id="findBy">
只要有两个以上的id相同,就会报错,这种一般是因为复制粘贴没注意就会出现,需要认真!
2、返回类型错误
<resultMap type="com.newtouch.business.module.dto.T01agentComDTO" id="t01agentComMap">
<select id="findBy" resultType="t01agentComMap">
像在这里,我返回的是resultMap,但是却写了resultType
同样的还有比如说返回string类型,但我写的是resultMap ,也会报错
3、没有写全类名
<resultMap type="com.newtouch.business.module.dto.T01agentComDTO" id="t01agentComMap">
还是这个resultMap ,我如果写成下面这个样子
<resultMap type="T01agentComDTO" id="t01agentComMap">
就会报错,当然如果配置了相关设置也可以