码迷,mamicode.com
首页 > 数据库 > 详细

mybatis中写sql语句时需要转义的字符

时间:2016-10-13 15:00:12      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:

mybatis配置文件,sql语句中含有转义字符:

错误语句:

  select * from table_base where flag_topic  & #{topic_num}

错误信息:

  Caused by: org.xml.sax.SAXParseException; lineNumber: 8; columnNumber: 54; The entity name must immediately follow the ‘&‘ in the entity reference.

正确语句:

  select * from table_base where flag_topic   & #{topic_num}

将语句中的位运算(与)”&“符使用“&”替换

mybatis配置文件写SQL语句的某些字符需要转义:

  &lt;          < 
    &gt;          >  
    &lt;&gt;   <>
    &amp;      & 
    &apos;      ‘
    &quot;      "

注意:要加上分号!

mybatis中写sql语句时需要转义的字符

标签:

原文地址:http://www.cnblogs.com/wjunxia/p/5956159.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!