MyBatis的mapper.xml中SQL包含大于号等符号处理

xml处理sql的程序中,大于号小于号等符号需要进行特殊处理

按照下面的进行替换

< <= > >=
&lt; &lt;= &gt; &gt;=
 

 

 

eg:

<select id="getReading" resultMap="BaseResultMap">
        select * from files where status=2 and ifc_status=0
        <choose>
            <when test="dealBigFiles == 0">
                and size &lt;= #{maxFileSize}
            </when>
            <otherwise>
                and size &gt; #{maxFileSize}
            </otherwise>
        </choose>
        order by id asc limit 1
</select>

 

posted @ 2019-10-09 17:26  慕尘  阅读(1553)  评论(0编辑  收藏  举报