MyBatis的mapper.xml中SQL包含大于号等符号处理
在xml处理sql的程序中,大于号小于号等符号需要进行特殊处理
按照下面的进行替换
< | <= | > | >= |
< | <= | > | >= |
eg:
<select id="getReading" resultMap="BaseResultMap"> select * from files where status=2 and ifc_status=0 <choose> <when test="dealBigFiles == 0"> and size <= #{maxFileSize} </when> <otherwise> and size > #{maxFileSize} </otherwise> </choose> order by id asc limit 1 </select>