码迷,mamicode.com
首页 > 其他好文 > 详细

Mybatis 异常: The content of elements must consist of well-formed character data or markup

时间:2016-06-07 14:25:13      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:

原因很简单:在ibatis的配置文件中不能出现小于号(>)

    <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
        delete from
        t_match
        where CREATE_TIME<=#{createTime,jdbcType=BIGINT} (修改为大于号)

  where #{createTime,jdbcType=BIGINT} >= CREATE_TIME
    </delete>

Mybatis 异常: The content of elements must consist of well-formed character data or markup

标签:

原文地址:http://www.cnblogs.com/parryyang/p/5566601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!