zoukankan      html  css  js  c++  java
  • Mybatis 异常: The content of elements must consist of well-formed character data or markup

    原因很简单:在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>

  • 相关阅读:
    isequal 和startswith 使用
    UVa10340
    UVa1368
    UVa455
    UVa1225
    UVa1586
    UVa 1585
    UVa10082
    UVa272
    NYOJ1
  • 原文地址:https://www.cnblogs.com/parryyang/p/5566601.html
Copyright © 2011-2022 走看看