mybatis中写sql语句时需要转义的字符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中写sql语句时需要转义的字符相关的知识,希望对你有一定的参考价值。
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语句的某些字符需要转义:
< <
> >
<> <>
& &
' ‘
" "
注意:要加上分号!
以上是关于mybatis中写sql语句时需要转义的字符的主要内容,如果未能解决你的问题,请参考以下文章