MyBatis特殊字符转义
Posted 星星满天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatis特殊字符转义相关的知识,希望对你有一定的参考价值。
使用mybatis的时候,特殊字符,例如<,>,<>,.....
需使用以下进行转义
< | < | 小于号 |
> | > | 大于号 |
& | & | 与 |
' | ‘ | 单引号 |
" | " | 双引号 |
<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>=0 and limit>0"> (这里就是类似的 <if test="limitStart>=0 and limit>0">) LIMIT ${limitStart} , ${limit} </if> <if test="limitStart==-1 and limit>0"> LIMIT ${limit} </if> ) temp,redisdb r where temp.appid = r.appid </select>
以上是关于MyBatis特殊字符转义的主要内容,如果未能解决你的问题,请参考以下文章