首页 > 数据库 > mysql教程 > mybaits的xxMapper.xml文件中大于号和小于号处理

mybaits的xxMapper.xml文件中大于号和小于号处理

WBOY
发布: 2016-06-07 16:01:42
原创
1602 人浏览过

第一种方法: 因为这个是xml格式的,所以不允许出现类似这样的字符,但是都可以使用![CDATA[ ]]符号进行说明,将此类符号不进行解析 。 mapper文件示例代码: select id=selectMonthAdvertise resultMap=ResultMap select * from ad_n_advertise_t where use

第一种方法:

因为这个是xml格式的,所以不允许出现类似“>”这样的字符,但是都可以使用符号进行说明,将此类符号不进行解析 。 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) &lt= date(crt_time) 
  order by crt_time desc
</select>
登录后复制
附:转义字符表。
< < 小于号
> > 大于号
& &
' ' 单引号
" " 双引号
mapper文件示例代码:
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板