首页 > 其他 > 详细

mybatis特殊字符转义

时间:2019-04-17 14:52:25      阅读:317      评论:0      收藏:0      [点我收藏+]

使用mybatis的时候,特殊字符,例如<,>,<>,.....

需使用以下进行转义

&lt; < 小于号  
&gt; > 大于号
&amp; &  
&apos; 单引号
&quot; " 双引号

 

    <select id="selectByExampleExt" parameterType="com.cn21.redisCluster.model.AppInfoExampleExt" resultMap="BaseResultMapExt">
        SELECT temp.*,r.* from (
            SELECT a.* from appinfo as a where 1=1 
            <if test="appid != null and appid != ‘‘ ">
                and a.appid=#{appid,jdbcType=VARCHAR}
            </if>
            <if test="productid != null">
                and a.productid=#{productid,jdbcType=INTEGER}
            </if>
            ORDER BY a.lastupdatetime DESC
            <if test="limitStart&gt;=0 and limit&gt;0">   (这里就是类似的 <if test="limitStart>=0 and limit>0">
                LIMIT ${limitStart} , ${limit}
            </if>
            <if test="limitStart==-1 and limit&gt;0">
                LIMIT ${limit}
            </if>
             ) temp,redisdb r where temp.appid = r.appid
    </select>

 

mybatis特殊字符转义

原文:https://www.cnblogs.com/But-you/p/10723356.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!