首页 > 代码库 > MyBatis特殊字符转义
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特殊字符转义
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。