本文主要是介绍Mybatis的mapper.xml出现 tag name excepted 错误,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
mapper报了tag name excepted错误
该错误是提示 '<'符号在xml配置SQL 语句中是不能直接识别出来的,也就是说,我们在使用到 > 、< 等符号的时候,需要将其进行转义,参考如下表:
< | < | 小于号 |
> | > | 大于号 |
& | & | 和 |
' | , | 单引号 |
" | " | 双引号 |
示例:
<select id="selectWeekOrderCount" parameterType="java.lang.Integer" resultMap="OrderCount">SELECT date_format(update_time,'%Y-%m-%d') as dateTime ,count(*) as numberFROM table1<where>user_id = #{userId}DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= DATE(create_time)</where>GROUP BY dateTime
</select>
这篇关于Mybatis的mapper.xml出现 tag name excepted 错误的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!