MyBatis Sql语句中的转义字符

时间:2014-02-09 15:23:57   收藏:0   阅读:1846

1、在xml的sql语句中,不能直接用大于号、小于号要用转义字符

如果用小于号会报错误如下:

org.apache.ibatis.builder.BuilderException: Error creating document instance.  Cause: org.xml.sax.SAXParseException: The content of elements must consist of well-formed character data or markup.

转义字符

                     <                                 

                     <

                     小于号                                           

                     &gt;

                     >                                      

                     大于号

                     &amp;

                     &

                     和

                     &apos;

                     ’

                     单引号

                     &quot;

                     "

                     双引号

2、使用
<![CDATA[ ]]>标记的sql语句中的<where> <if>等标签不会被解析


原文:http://blog.csdn.net/lidongtang/article/details/18982977

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!