在使用mybatis的过程中,由于xml文件本身的标签需要用<>来标示,因此在xml文件中书写小于号时,很容易被认为是一个标签的开始标志来处理,因此,应该讲小于号写成”<”;
例如:
<if test="infromTimeEnd != null and infromTimeEnd != ''">
AND e.createTime <=CONCAT('${infromTimeEnd}','23:59:59' )
</if>
在使用mybatis的过程中,由于xml文件本身的标签需要用<>来标示,因此在xml文件中书写小于号时,很容易被认为是一个标签的开始标志来处理,因此,应该讲小于号写成”<”;
例如:
<if test="infromTimeEnd != null and infromTimeEnd != ''">
AND e.createTime <=CONCAT('${infromTimeEnd}','23:59:59' )
</if>