有个细节一直没有注意到,今天mark一下: mybatis进行时间比较的时候我们会这么写,一直都是在复制粘贴所以没有注意,一个标签<![CDATA[ ]]> 今天在做另外一个有时间比较sql的时候,xml一直报如下错: The content of elements must consist of well-formed character data or markup 检查没有xml标签问题,后来才注意到原来是没加<![CDATA[ ]]>标签导致: 因为这个是xml格式的,所以…
示例: xml文件: <!-- 获取条数 --> <select id="getCount" parameterType="Map" resultType="long"> select count(*) from orders o,user u,linkman l where o.flag=1 and o.uid=u.uid and l.lid=o.uid <if test="fdate!=null&quo…