首页 > 代码库 > mybaits的xxMapper.xml文件中大于号和小于号处理
mybaits的xxMapper.xml文件中大于号和小于号处理
第一种方法:
因为这个是xml格式的,所以不允许出现类似“>”这样的字符,但是都可以使用<![CDATA[ ]]>符号进行说明,将此类符号不进行解析 。 mapper文件示例代码:
<select id="selectMonthAdvertise" resultMap="ResultMap"> select * from ad_n_advertise_t where user_id in <foreach item="item" index="index" collection="userIdList" open="(" separator="," close=")"> #{item} </foreach> and isdelete=#{isdelete,jdbcType=TINYINT} and <![CDATA[</span>date_sub(curdate(), INTERVAL 30 DAY) <= date(crt_time)]]> order by crt_time desc </select>
第二种方法:
用了转义字符把>和<替换掉。 mapper文件示例代码:
<select id="selectMonthAdvertise" resultMap="ResultMap"> select * from ad_n_advertise_t where user_id in <foreach item="item" index="index" collection="userIdList" open="(" separator="," close=")"> #{item} </foreach> and isdelete=#{isdelete,jdbcType=TINYINT} and date_sub(curdate(), INTERVAL 30 DAY) <= date(crt_time) order by crt_time desc </select>
附:转义字符表。
< | < | 小于号 |
> | > | 大于号 |
& | & | 和 |
' | ‘ | 单引号 |
" | " | 双引号 |
mapper文件示例代码:
mybaits的xxMapper.xml文件中大于号和小于号处理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。