siesteven

你要保守你心,胜过保守一切。因为一生的果效是由心发出。 --箴4:23
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

mybatis 小于号 转义

Posted on 2016-12-14 11:44  siesteven  阅读(486)  评论(0编辑  收藏  举报

AND lbaq.watch_answer_start_datetime >= #{stm}
AND lbaq.watch_answer_end_datetime <= #{etm}

此时报错“元素内容必须由格式正确的字符数据或标记组成”,将大于号、小于号转义后,编译无错误

AND lbaq.watch_answer_start_datetime &gt;= #{stm}
AND lbaq.watch_answer_end_datetime &lt;= #{etm}

 

转义字符:

 &lt;   <  小于号

 &gt;  >  大于号

 &amp;  &  和 

 &apos;  '  单引号

&quot;   " 双引号